[][src]Enum nell::api::IFA

pub enum IFA<'a> {
    Address(&'a [u8]),
    Local(&'a [u8]),
    Label(&'a str),
    Broadcast(&'a [u8]),
    Anycast(&'a [u8]),
    Multicast(&'a [u8]),
    Flags(u32),
    Unsupported(rtattrCursor<'a>),
}

Variants

Address(&'a [u8])
Local(&'a [u8])
Label(&'a str)
Broadcast(&'a [u8])
Anycast(&'a [u8])
Multicast(&'a [u8])
Flags(u32)
Unsupported(rtattrCursor<'a>)

Trait Implementations

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

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

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

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

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

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

type Error = Invalid

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a> RefUnwindSafe for IFA<'a>

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

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

impl<'a> Unpin for IFA<'a>

impl<'a> UnwindSafe for IFA<'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.