Enum rtnetlink::RouteMetricsNla[][src]

pub enum RouteMetricsNla {
    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),
}

Variants

Trait Implementations

impl Debug for RouteMetricsNla
[src]

Formats the value using the given formatter. Read more

impl PartialEq for RouteMetricsNla
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for RouteMetricsNla
[src]

impl Clone for RouteMetricsNla
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Nla for RouteMetricsNla
[src]

impl<'buffer, T: AsRef<[u8]> + ?Sized> Parseable<RouteMetricsNla> for NlaBuffer<&'buffer T>
[src]

Deserialize the current type.

Auto Trait Implementations