[][src]Struct neli::rtnl::Rtattr

pub struct Rtattr<T, P> {
    pub rta_len: c_ushort,
    pub rta_type: T,
    pub rta_payload: P,
}

Struct representing route netlink attributes

Fields

rta_len: c_ushort

Length of the attribute

rta_type: T

Type of the attribute

rta_payload: P

Payload of the attribute

Methods

impl<T, P> Rtattr<T, P> where
    T: RtaType,
    P: Nl
[src]

pub fn payload_size(&self) -> usize[src]

Get the size of the payload only

Trait Implementations

impl<T, P> Nl for Rtattr<T, P> where
    T: RtaType,
    P: Nl
[src]

Auto Trait Implementations

impl<T, P> Send for Rtattr<T, P> where
    P: Send,
    T: Send

impl<T, P> Unpin for Rtattr<T, P> where
    P: Unpin,
    T: Unpin

impl<T, P> Sync for Rtattr<T, P> where
    P: Sync,
    T: Sync

impl<T, P> UnwindSafe for Rtattr<T, P> where
    P: UnwindSafe,
    T: UnwindSafe

impl<T, P> RefUnwindSafe for Rtattr<T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]