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

pub struct Rtmsg {
    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: Rtattrs<Rta, 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: Rtattrs<Rta, Vec<u8>>

Payload of Rtattrs

Trait Implementations

impl Debug for Rtmsg[src]

impl Nl for Rtmsg[src]

Auto Trait Implementations

impl RefUnwindSafe for Rtmsg

impl Send for Rtmsg

impl Sync for Rtmsg

impl Unpin for Rtmsg

impl UnwindSafe for Rtmsg

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.