Struct medea_client_api_proto::stats::RtcCertificateStats[][src]

pub struct RtcCertificateStats {
    pub fingerprint: String,
    pub fingerprint_algorithm: String,
    pub base64_certificate: String,
}
This is supported on crate feature extended-stats only.

Information about a certificate used by RTCIceTransport.

RtcStatsType::Certificate variant.

Full doc on W3C.

Fields

fingerprint: String

Fingerprint of the certificate.

Only use the fingerprint value as defined in Section 5 of RFC 4572.

fingerprint_algorithm: String

Hash function used to compute the certificate fingerprint. For instance, sha-256.

base64_certificate: String

The DER-encoded Base64 representation of the certificate.

Trait Implementations

impl Clone for RtcCertificateStats[src]

impl Debug for RtcCertificateStats[src]

impl<'de> Deserialize<'de> for RtcCertificateStats[src]

impl Eq for RtcCertificateStats[src]

impl Hash for RtcCertificateStats[src]

impl PartialEq<RtcCertificateStats> for RtcCertificateStats[src]

impl Serialize for RtcCertificateStats[src]

impl StructuralEq for RtcCertificateStats[src]

impl StructuralPartialEq for RtcCertificateStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.