[][src]Struct netlink_packet_route::rtnl::tc::nlas::StatsQueue

pub struct StatsQueue {
    pub qlen: u32,
    pub backlog: u32,
    pub drops: u32,
    pub requeues: u32,
    pub overlimits: u32,
}

Queuing statistics

Fields

qlen: u32

queue length

backlog: u32

backlog size of queue

drops: u32

number of dropped packets

requeues: u32

number of requeues

overlimits: u32

number of enqueues over the limit

Trait Implementations

impl Clone for StatsQueue[src]

impl Copy for StatsQueue[src]

impl Debug for StatsQueue[src]

impl Emitable for StatsQueue[src]

impl Eq for StatsQueue[src]

impl<T: AsRef<[u8]>> Parseable<StatsQueueBuffer<T>> for StatsQueue[src]

impl PartialEq<StatsQueue> for StatsQueue[src]

impl StructuralEq for StatsQueue[src]

impl StructuralPartialEq for StatsQueue[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.