Enum rtnetlink::LinkInfoVlan[][src]

pub enum LinkInfoVlan {
    Unspec(Vec<u8>),
    Id(u16),
    Flags((u32, u32)),
    EgressQos(Vec<u8>),
    IngressQos(Vec<u8>),
    Protocol(u16),
}

Variants

Trait Implementations

impl Debug for LinkInfoVlan
[src]

Formats the value using the given formatter. Read more

impl PartialEq for LinkInfoVlan
[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 LinkInfoVlan
[src]

impl Clone for LinkInfoVlan
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Nla for LinkInfoVlan
[src]

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

Deserialize the current type.

Auto Trait Implementations