#[non_exhaustive]pub enum Metrics {
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unspec(Vec<u8>)
Lock(u32)
Mtu(u32)
Window(u32)
Rtt(u32)
RttVar(u32)
SsThresh(u32)
Cwnd(u32)
Advmss(u32)
Reordering(u32)
Hoplimit(u32)
InitCwnd(u32)
Features(u32)
RtoMin(u32)
InitRwnd(u32)
QuickAck(u32)
CcAlgo(u32)
FastopenNoCookie(u32)
Other(DefaultNla)
Trait Implementations§
source§impl PartialEq<Metrics> for Metrics
impl PartialEq<Metrics> for Metrics
impl Eq for Metrics
impl StructuralEq for Metrics
impl StructuralPartialEq for Metrics
Auto Trait Implementations§
impl RefUnwindSafe for Metrics
impl Send for Metrics
impl Sync for Metrics
impl Unpin for Metrics
impl UnwindSafe for Metrics
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