pub struct SdpAttributeFingerprint {
pub hash_algorithm: SdpAttributeFingerprintHashType,
pub fingerprint: Vec<u8>,
}
Fields§
§hash_algorithm: SdpAttributeFingerprintHashType
§fingerprint: Vec<u8>
Trait Implementations§
Source§impl AnonymizingClone for SdpAttributeFingerprint
impl AnonymizingClone for SdpAttributeFingerprint
fn masked_clone(&self, anon: &mut StatefulSdpAnonymizer) -> Self
Source§impl Clone for SdpAttributeFingerprint
impl Clone for SdpAttributeFingerprint
Source§fn clone(&self) -> SdpAttributeFingerprint
fn clone(&self) -> SdpAttributeFingerprint
Returns a duplicate 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 SdpAttributeFingerprint
impl Debug for SdpAttributeFingerprint
Source§impl Display for SdpAttributeFingerprint
impl Display for SdpAttributeFingerprint
Source§impl PartialEq for SdpAttributeFingerprint
impl PartialEq for SdpAttributeFingerprint
Source§impl TryFrom<(SdpAttributeFingerprintHashType, Vec<u8>)> for SdpAttributeFingerprint
impl TryFrom<(SdpAttributeFingerprintHashType, Vec<u8>)> for SdpAttributeFingerprint
Source§type Error = SdpParserInternalError
type Error = SdpParserInternalError
The type returned in the event of a conversion error.
Source§fn try_from(
parts: (SdpAttributeFingerprintHashType, Vec<u8>),
) -> Result<Self, SdpParserInternalError>
fn try_from( parts: (SdpAttributeFingerprintHashType, Vec<u8>), ) -> Result<Self, SdpParserInternalError>
Performs the conversion.
impl Eq for SdpAttributeFingerprint
impl StructuralPartialEq for SdpAttributeFingerprint
Auto Trait Implementations§
impl Freeze for SdpAttributeFingerprint
impl RefUnwindSafe for SdpAttributeFingerprint
impl Send for SdpAttributeFingerprint
impl Sync for SdpAttributeFingerprint
impl Unpin for SdpAttributeFingerprint
impl UnwindSafe for SdpAttributeFingerprint
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