Struct webrtc_ice::stats::CandidatePairStats
source · [−]pub struct CandidatePairStats {Show 27 fields
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: Instant
local_candidate_id: String
remote_candidate_id: String
state: CandidatePairState
nominated: bool
packets_sent: u32
packets_received: u32
bytes_sent: u64
bytes_received: u64
last_packet_sent_timestamp: Instant
last_packet_received_timestamp: Instant
first_request_timestamp: Instant
last_request_timestamp: Instant
last_response_timestamp: Instant
total_round_trip_time: f64
current_round_trip_time: f64
available_outgoing_bitrate: f64
available_incoming_bitrate: f64
circuit_breaker_trigger_count: u32
requests_received: u64
requests_sent: u64
responses_received: u64
responses_sent: u64
retransmissions_received: u64
retransmissions_sent: u64
consent_requests_sent: u64
consent_expired_timestamp: Instant
Trait Implementations
sourceimpl Clone for CandidatePairStats
impl Clone for CandidatePairStats
sourcefn clone(&self) -> CandidatePairStats
fn clone(&self) -> CandidatePairStats
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for CandidatePairStats
impl Send for CandidatePairStats
impl Sync for CandidatePairStats
impl Unpin for CandidatePairStats
impl UnwindSafe for CandidatePairStats
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more