[][src]Enum netlink_packet_route::rtnl::link::nlas::InfoVxlan

pub enum InfoVxlan {
    Unspec(Vec<u8>),
    Id(u32),
    Group(Vec<u8>),
    Group6(Vec<u8>),
    Link(u32),
    Local(Vec<u8>),
    Local6(Vec<u8>),
    Tos(u8),
    Ttl(u8),
    Label(u32),
    Learning(u8),
    Ageing(u32),
    Limit(u32),
    PortRange((u16, u16)),
    Proxy(u8),
    Rsc(u8),
    L2Miss(u8),
    L3Miss(u8),
    CollectMetadata(u8),
    Port(u16),
    UDPCsum(u8),
    UDPZeroCsumTX(u8),
    UDPZeroCsumRX(u8),
    RemCsumTX(u8),
    RemCsumRX(u8),
    Gbp(u8),
    Gpe(u8),
    RemCsumNoPartial(u8),
    TtlInherit(u8),
    Df(u8),
}

Variants

Unspec(Vec<u8>)
Id(u32)
Group(Vec<u8>)
Group6(Vec<u8>)
Local(Vec<u8>)
Local6(Vec<u8>)
Tos(u8)
Ttl(u8)
Label(u32)
Learning(u8)
Ageing(u32)
Limit(u32)
PortRange((u16, u16))
Proxy(u8)
Rsc(u8)
L2Miss(u8)
L3Miss(u8)
CollectMetadata(u8)
Port(u16)
UDPCsum(u8)
UDPZeroCsumTX(u8)
UDPZeroCsumRX(u8)
RemCsumTX(u8)
RemCsumRX(u8)
Gbp(u8)
Gpe(u8)
RemCsumNoPartial(u8)
TtlInherit(u8)
Df(u8)

Trait Implementations

impl Clone for InfoVxlan[src]

impl Debug for InfoVxlan[src]

impl Eq for InfoVxlan[src]

impl Nla for InfoVxlan[src]

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

impl PartialEq<InfoVxlan> for InfoVxlan[src]

impl StructuralEq for InfoVxlan[src]

impl StructuralPartialEq for InfoVxlan[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Emitable for T where
    T: Nla
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.