Enum rtnetlink::LinkInfoData[][src]

pub enum LinkInfoData {
    Bridge(Vec<LinkInfoBridge>),
    Tun(Vec<u8>),
    Nlmon(Vec<u8>),
    Vlan(Vec<LinkInfoVlan>),
    Dummy(Vec<u8>),
    Ifb(Vec<u8>),
    Veth(LinkMessage),
    Vxlan(Vec<u8>),
    Bond(Vec<u8>),
    IpVlan(Vec<u8>),
    MacVlan(Vec<u8>),
    MacVtap(Vec<u8>),
    GreTap(Vec<u8>),
    GreTap6(Vec<u8>),
    IpTun(Vec<u8>),
    SitTun(Vec<u8>),
    GreTun(Vec<u8>),
    GreTun6(Vec<u8>),
    Vti(Vec<u8>),
    Vrf(Vec<u8>),
    Gtp(Vec<u8>),
    Other(Vec<u8>),
}

Variants

Trait Implementations

impl Debug for LinkInfoData
[src]

Formats the value using the given formatter. Read more

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

impl Clone for LinkInfoData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Nla for LinkInfoData
[src]

Auto Trait Implementations