[][src]Enum nell::api::NDA

pub enum NDA<'a> {
    Dst(&'a [u8]),
    LLAddr(&'a [u8]),
    Probes(u32),
    VLAN(u16),
    Port(u16),
    VNI(u32),
    IFIndex(u32),
    Master(u32),
    Protocol(u8),
    Unsupported(rtattrCursor<'a>),
}

Variants

LLAddr(&'a [u8])
Probes(u32)
VLAN(u16)
Port(u16)
VNI(u32)
IFIndex(u32)
Master(u32)
Protocol(u8)
Unsupported(rtattrCursor<'a>)

Trait Implementations

impl<'a> Debug for NDA<'a>[src]

impl<'a> Eq for NDA<'a>[src]

impl<'a> PartialEq<NDA<'a>> for NDA<'a>[src]

impl<'a> StructuralEq for NDA<'a>[src]

impl<'a> StructuralPartialEq for NDA<'a>[src]

impl<'a> TryFrom<(rtattr, Cursor<'a>)> for NDA<'a>[src]

type Error = Invalid

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a> RefUnwindSafe for NDA<'a>

impl<'a> !Send for NDA<'a>

impl<'a> !Sync for NDA<'a>

impl<'a> Unpin for NDA<'a>

impl<'a> UnwindSafe for NDA<'a>

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> From<T> for T[src]

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

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.