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

pub struct Tcmsg {
    pub tcm_family: c_uchar,
    pub tcm_ifindex: c_int,
    pub tcm_handle: u32,
    pub tcm_parent: u32,
    pub tcm_info: u32,
    pub rtattrs: Rtattrs<Tca, 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: Rtattrs<Tca, Vec<u8>>

Payload of Rtattrs

Trait Implementations

impl Debug for Tcmsg[src]

impl Nl for Tcmsg[src]

Auto Trait Implementations

impl RefUnwindSafe for Tcmsg

impl Send for Tcmsg

impl Sync for Tcmsg

impl Unpin for Tcmsg

impl UnwindSafe for Tcmsg

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.