pub struct EwmaRtt {
pub srtt_ns: f64,
pub rttvar_ns: f64,
pub samples: u32,
}Expand description
EWMA RTT measurement for a (prefix, face) pair.
Fields§
§srtt_ns: f64Smoothed RTT in nanoseconds.
rttvar_ns: f64RTT variance.
samples: u32Number of samples.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EwmaRtt
impl RefUnwindSafe for EwmaRtt
impl Send for EwmaRtt
impl Sync for EwmaRtt
impl Unpin for EwmaRtt
impl UnwindSafe for EwmaRtt
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