[][src]Struct neli::rtnl::Tcmsg

pub struct Tcmsg<T> {
    pub tcm_family: c_uchar,
    pub tcm_ifindex: c_int,
    pub tcm_handle: u32,
    pub tcm_parent: u32,
    pub tcm_info: u32,
    pub rtattrs: Vec<Rtattr<T, Vec<u8>>>,
}

Message in response to queuing discipline operations

Fields

tcm_family: c_uchar

Family

tcm_ifindex: c_int

Interface index

tcm_handle: u32

Queuing discipline handle

tcm_parent: u32

Parent queuing discipline

tcm_info: u32

Info

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

Payload of Rtattrs

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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