[][src]Enum nell::api::RTA

pub enum RTA<'a> {
    Dst(&'a [u8]),
    Src(&'a [u8]),
    IIF(u32),
    OIF(u32),
    Gateway(&'a [u8]),
    Unsupported(rtattrCursor<'a>),
}

Variants

IIF(u32)
OIF(u32)
Gateway(&'a [u8])
Unsupported(rtattrCursor<'a>)

Trait Implementations

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

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

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

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

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

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

type Error = Invalid

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a> RefUnwindSafe for RTA<'a>

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

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

impl<'a> Unpin for RTA<'a>

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