Struct webrtc_ice::stats::CandidatePairStats[][src]

pub struct CandidatePairStats {
    pub timestamp: Instant,
    pub local_candidate_id: String,
    pub remote_candidate_id: String,
    pub state: CandidatePairState,
    pub nominated: bool,
    pub packets_sent: u32,
    pub packets_received: u32,
    pub bytes_sent: u64,
    pub bytes_received: u64,
    pub last_packet_sent_timestamp: Instant,
    pub last_packet_received_timestamp: Instant,
    pub first_request_timestamp: Instant,
    pub last_request_timestamp: Instant,
    pub last_response_timestamp: Instant,
    pub total_round_trip_time: f64,
    pub current_round_trip_time: f64,
    pub available_outgoing_bitrate: f64,
    pub available_incoming_bitrate: f64,
    pub circuit_breaker_trigger_count: u32,
    pub requests_received: u64,
    pub requests_sent: u64,
    pub responses_received: u64,
    pub responses_sent: u64,
    pub retransmissions_received: u64,
    pub retransmissions_sent: u64,
    pub consent_requests_sent: u64,
    pub consent_expired_timestamp: Instant,
}

Fields

timestamp: Instantlocal_candidate_id: Stringremote_candidate_id: Stringstate: CandidatePairStatenominated: boolpackets_sent: u32packets_received: u32bytes_sent: u64bytes_received: u64last_packet_sent_timestamp: Instantlast_packet_received_timestamp: Instantfirst_request_timestamp: Instantlast_request_timestamp: Instantlast_response_timestamp: Instanttotal_round_trip_time: f64current_round_trip_time: f64available_outgoing_bitrate: f64available_incoming_bitrate: f64circuit_breaker_trigger_count: u32requests_received: u64requests_sent: u64responses_received: u64responses_sent: u64retransmissions_received: u64retransmissions_sent: u64consent_requests_sent: u64consent_expired_timestamp: Instant

Trait Implementations

impl Clone for CandidatePairStats[src]

impl Debug for CandidatePairStats[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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T

impl<T> Pipe for T where
    T: ?Sized

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,