[][src]Struct netlink_wi::TransmitQueueStats

pub struct TransmitQueueStats {
    pub backlog_bytes: Option<u32>,
    pub backlog_packets: Option<u32>,
    pub flows: Option<u32>,
    pub drops: Option<u32>,
    pub ecn_marks: Option<u32>,
    pub overlimit: Option<u32>,
    pub overmemory: Option<u32>,
    pub collisions: Option<u32>,
    pub tx_bytes: Option<u32>,
    pub tx_packets: Option<u32>,
    pub max_flows: Option<u32>,
}

Fields

backlog_bytes: Option<u32>

Number of bytes currently backlogged.

backlog_packets: Option<u32>

Number of packets currently backlogged.

flows: Option<u32>

Total number of new flows seen.

drops: Option<u32>

Total number of packet drops.

ecn_marks: Option<u32>

Total number of packet ECN marks.

overlimit: Option<u32>

Number of drops due to queue space overflow.

overmemory: Option<u32>

Number of drops due to memory limit overflow (only for per-phy stats).

collisions: Option<u32>

Number of hash collisions.

tx_bytes: Option<u32>

Total number of bytes dequeued from TXQ.

tx_packets: Option<u32>

Total number of packets dequeued from TXQ.

max_flows: Option<u32>

Number of flow buckets for PHY.

Trait Implementations

impl Clone for TransmitQueueStats[src]

impl Debug for TransmitQueueStats[src]

impl Default for TransmitQueueStats[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.