Struct s2n_quic_core::event::builder::RecoveryMetrics
source · pub struct RecoveryMetrics<'a> {
pub path: Path<'a>,
pub min_rtt: Duration,
pub smoothed_rtt: Duration,
pub latest_rtt: Duration,
pub rtt_variance: Duration,
pub max_ack_delay: Duration,
pub pto_count: u32,
pub congestion_window: u32,
pub bytes_in_flight: u32,
pub congestion_limited: bool,
}Expand description
Recovery metrics updated
Fields§
§path: Path<'a>§min_rtt: Duration§smoothed_rtt: Duration§latest_rtt: Duration§rtt_variance: Duration§max_ack_delay: Duration§pto_count: u32§congestion_window: u32§bytes_in_flight: u32§congestion_limited: boolTrait Implementations§
source§impl<'a> Clone for RecoveryMetrics<'a>
impl<'a> Clone for RecoveryMetrics<'a>
source§fn clone(&self) -> RecoveryMetrics<'a>
fn clone(&self) -> RecoveryMetrics<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<'a> Debug for RecoveryMetrics<'a>
impl<'a> Debug for RecoveryMetrics<'a>
source§impl<'a> IntoEvent<RecoveryMetrics<'a>> for RecoveryMetrics<'a>
impl<'a> IntoEvent<RecoveryMetrics<'a>> for RecoveryMetrics<'a>
fn into_event(self) -> RecoveryMetrics<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for RecoveryMetrics<'a>
impl<'a> Send for RecoveryMetrics<'a>
impl<'a> Sync for RecoveryMetrics<'a>
impl<'a> Unpin for RecoveryMetrics<'a>
impl<'a> UnwindSafe for RecoveryMetrics<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more