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 FromXml for Fingerprint
impl FromXml for Fingerprint
§type Builder = FromEventsViaElement<Fingerprint>
type Builder = FromEventsViaElement<Fingerprint>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for Fingerprint
impl IntoXml for Fingerprint
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type.
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.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 Freeze for Fingerprint
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