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

pub enum InfoData {
    Bridge(Vec<InfoBridge>),
    Tun(Vec<u8>),
    Nlmon(Vec<u8>),
    Vlan(Vec<InfoVlan>),
    Dummy(Vec<u8>),
    Ifb(Vec<u8>),
    Veth(VethInfo),
    Vxlan(Vec<InfoVxlan>),
    Bond(Vec<u8>),
    IpVlan(Vec<InfoIpVlan>),
    MacVlan(Vec<InfoMacVlan>),
    MacVtap(Vec<InfoMacVtap>),
    GreTap(Vec<u8>),
    GreTap6(Vec<u8>),
    IpTun(Vec<u8>),
    SitTun(Vec<u8>),
    GreTun(Vec<u8>),
    GreTun6(Vec<u8>),
    Vti(Vec<u8>),
    Vrf(Vec<InfoVrf>),
    Gtp(Vec<u8>),
    Ipoib(Vec<InfoIpoib>),
    Other(Vec<u8>),
}

Variants

Bridge(Vec<InfoBridge>)
Tun(Vec<u8>)
Nlmon(Vec<u8>)
Vlan(Vec<InfoVlan>)
Dummy(Vec<u8>)
Ifb(Vec<u8>)
Veth(VethInfo)
Vxlan(Vec<InfoVxlan>)
Bond(Vec<u8>)
IpVlan(Vec<InfoIpVlan>)
MacVlan(Vec<InfoMacVlan>)
MacVtap(Vec<InfoMacVtap>)
GreTap(Vec<u8>)
GreTap6(Vec<u8>)
IpTun(Vec<u8>)
SitTun(Vec<u8>)
GreTun(Vec<u8>)
GreTun6(Vec<u8>)
Vti(Vec<u8>)
Vrf(Vec<InfoVrf>)
Gtp(Vec<u8>)
Ipoib(Vec<InfoIpoib>)
Other(Vec<u8>)

Trait Implementations

impl Clone for InfoData[src]

impl Debug for InfoData[src]

impl Eq for InfoData[src]

impl Nla for InfoData[src]

impl PartialEq<InfoData> for InfoData[src]

impl StructuralEq for InfoData[src]

impl StructuralPartialEq for InfoData[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.