[][src]Struct neli::rtnl::Ifaddrmsg

pub struct Ifaddrmsg<T> {
    pub ifa_family: RtAddrFamily,
    pub ifa_prefixlen: c_uchar,
    pub ifa_flags: Vec<IfaF>,
    pub ifa_scope: c_uchar,
    pub ifa_index: c_int,
    pub rtattrs: Vec<Rtattr<T, Vec<u8>>>,
}

Struct representing interface address messages

Fields

ifa_family: RtAddrFamily

Interface address family

ifa_prefixlen: c_uchar

Interface address prefix length

ifa_flags: Vec<IfaF>

Interface address flags

ifa_scope: c_uchar

Interface address scope

ifa_index: c_int

Interface address index

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

Payload of Rtattrs

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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