[][src]Struct neli::rtnl::Rtmsg

pub struct Rtmsg<T> {
    pub rtm_family: RtAddrFamily,
    pub rtm_dst_len: c_uchar,
    pub rtm_src_len: c_uchar,
    pub rtm_tos: c_uchar,
    pub rtm_table: RtTable,
    pub rtm_protocol: Rtprot,
    pub rtm_scope: RtScope,
    pub rtm_type: Rtn,
    pub rtm_flags: Vec<RtmF>,
    pub rtattrs: Vec<Rtattr<T, Vec<u8>>>,
}

Route message

Fields

rtm_family: RtAddrFamily

Address family of route

rtm_dst_len: c_uchar

Length of destination

rtm_src_len: c_uchar

Length of source

rtm_tos: c_uchar

TOS filter

rtm_table: RtTable

Routing table ID

rtm_protocol: Rtprot

Routing protocol

rtm_scope: RtScope

Routing scope

rtm_type: Rtn

Routing type

rtm_flags: Vec<RtmF>

Routing flags

rtattrs: Vec<Rtattr<T, Vec<u8>>>

Payload of Rtattrs

Trait Implementations

impl<T> Nl for Rtmsg<T> where
    T: RtaType
[src]

Auto Trait Implementations

impl<T> Send for Rtmsg<T> where
    T: Send

impl<T> Unpin for Rtmsg<T> where
    T: Unpin

impl<T> Sync for Rtmsg<T> where
    T: Sync

impl<T> UnwindSafe for Rtmsg<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Rtmsg<T> where
    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]