pub struct ICECandidatePairStats {
Show 27 fields pub timestamp: Instant, pub stats_type: RTCStatsType, pub id: String, 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 total_round_trip_time: f64, pub current_round_trip_time: f64, pub available_outgoing_bitrate: f64, pub available_incoming_bitrate: f64, pub requests_received: u64, pub requests_sent: u64, pub responses_received: u64, pub responses_sent: u64, pub consent_requests_sent: u64, pub circuit_breaker_trigger_count: u32, pub consent_expired_timestamp: Instant, pub first_request_timestamp: Instant, pub last_request_timestamp: Instant, pub retransmissions_sent: u64,
}

Fields

timestamp: Instantstats_type: RTCStatsTypeid: Stringlocal_candidate_id: Stringremote_candidate_id: Stringstate: CandidatePairStatenominated: boolpackets_sent: u32packets_received: u32bytes_sent: u64bytes_received: u64last_packet_sent_timestamp: Instantlast_packet_received_timestamp: Instanttotal_round_trip_time: f64current_round_trip_time: f64available_outgoing_bitrate: f64available_incoming_bitrate: f64requests_received: u64requests_sent: u64responses_received: u64responses_sent: u64consent_requests_sent: u64circuit_breaker_trigger_count: u32consent_expired_timestamp: Instantfirst_request_timestamp: Instantlast_request_timestamp: Instantretransmissions_sent: u64

Trait Implementations

Formats the value using the given formatter. Read more
Converts to this type from the input type.
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.