Struct medea_client_api_proto::stats::RtcSctpTransportStats[][src]

pub struct RtcSctpTransportStats {
    pub smoothed_round_trip_time: Option<HighResTimeStamp>,
}

Representation of the stats corresponding to an RTCSctpTransport.

RtcStatsType::SctpTransport variant.

Full doc on W3C.

Fields

smoothed_round_trip_time: Option<HighResTimeStamp>

Latest smoothed round-trip time value, corresponding to spinfo_srtt defined in RFC 6458 but converted to seconds.

If there has been no round-trip time measurements yet, this value is undefined.

Trait Implementations

impl Clone for RtcSctpTransportStats[src]

impl Copy for RtcSctpTransportStats[src]

impl Debug for RtcSctpTransportStats[src]

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

impl Hash for RtcSctpTransportStats[src]

impl PartialEq<RtcSctpTransportStats> for RtcSctpTransportStats[src]

impl Serialize for RtcSctpTransportStats[src]

impl StructuralPartialEq for RtcSctpTransportStats[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.