Struct netlink_packet_route::rtnl::tc::nlas::StatsQueue
source · [−]pub struct StatsQueue {
pub qlen: u32,
pub backlog: u32,
pub drops: u32,
pub requeues: u32,
pub overlimits: u32,
}
Expand description
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
sourceimpl Clone for StatsQueue
impl Clone for StatsQueue
sourcefn clone(&self) -> StatsQueue
fn clone(&self) -> StatsQueue
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StatsQueue
impl Debug for StatsQueue
sourceimpl Emitable for StatsQueue
impl Emitable for StatsQueue
sourceimpl<T: AsRef<[u8]>> Parseable<StatsQueueBuffer<T>> for StatsQueue
impl<T: AsRef<[u8]>> Parseable<StatsQueueBuffer<T>> for StatsQueue
sourcefn parse(buf: &StatsQueueBuffer<T>) -> Result<Self, DecodeError>
fn parse(buf: &StatsQueueBuffer<T>) -> Result<Self, DecodeError>
Deserialize the current type.
sourceimpl PartialEq<StatsQueue> for StatsQueue
impl PartialEq<StatsQueue> for StatsQueue
sourcefn eq(&self, other: &StatsQueue) -> bool
fn eq(&self, other: &StatsQueue) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &StatsQueue) -> bool
fn ne(&self, other: &StatsQueue) -> bool
This method tests for !=
.
impl Copy for StatsQueue
impl Eq for StatsQueue
impl StructuralEq for StatsQueue
impl StructuralPartialEq for StatsQueue
Auto Trait Implementations
impl RefUnwindSafe for StatsQueue
impl Send for StatsQueue
impl Sync for StatsQueue
impl Unpin for StatsQueue
impl UnwindSafe for StatsQueue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more