Struct xmpp_parsers::jingle_dtls_srtp::Fingerprint
source · pub struct Fingerprint {
pub hash: Algo,
pub setup: Setup,
pub value: <ColonSeparatedHex as Codec>::Decoded,
}
Expand description
Fingerprint of the key used for a DTLS handshake.
Fields§
§hash: Algo
The hash algorithm used for this fingerprint.
setup: Setup
Indicates which of the end points should initiate the TCP connection establishment.
value: <ColonSeparatedHex as Codec>::Decoded
Hash value of this fingerprint.
Implementations§
source§impl Fingerprint
impl Fingerprint
sourcepub fn from_hash(setup: Setup, hash: Hash) -> Fingerprint
pub fn from_hash(setup: Setup, hash: Hash) -> Fingerprint
Create a new Fingerprint from a Setup and a Hash.
sourcepub fn from_colon_separated_hex(
setup: Setup,
algo: &str,
hash: &str
) -> Result<Fingerprint, Error>
pub fn from_colon_separated_hex( setup: Setup, algo: &str, hash: &str ) -> Result<Fingerprint, Error>
Create a new Fingerprint from a Setup and parsing the hash.
Trait Implementations§
source§impl Clone for Fingerprint
impl Clone for Fingerprint
source§fn clone(&self) -> Fingerprint
fn clone(&self) -> Fingerprint
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Fingerprint
impl Debug for Fingerprint
source§impl From<Fingerprint> for Element
impl From<Fingerprint> for Element
source§fn from(elem: Fingerprint) -> Element
fn from(elem: Fingerprint) -> Element
Converts to this type from the input type.
source§impl PartialEq for Fingerprint
impl PartialEq for Fingerprint
source§fn eq(&self, other: &Fingerprint) -> bool
fn eq(&self, other: &Fingerprint) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for Fingerprint
impl TryFrom<Element> for Fingerprint
impl StructuralPartialEq for Fingerprint
Auto Trait Implementations§
impl RefUnwindSafe for Fingerprint
impl Send for Fingerprint
impl Sync for Fingerprint
impl Unpin for Fingerprint
impl UnwindSafe for Fingerprint
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more