pub struct StatsQueue {
pub qlen: u32,
pub backlog: u32,
pub drops: u32,
pub requeues: u32,
pub overlimits: u32,
}
Fields§
§qlen: u32
§backlog: u32
§drops: u32
§requeues: u32
§overlimits: u32
Trait Implementations§
Source§impl Debug for StatsQueue
impl Debug for StatsQueue
Source§impl Default for StatsQueue
impl Default for StatsQueue
Source§fn default() -> StatsQueue
fn default() -> StatsQueue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatsQueue
impl<'de> Deserialize<'de> for StatsQueue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StatsQueue
impl RefUnwindSafe for StatsQueue
impl Send for StatsQueue
impl Sync for StatsQueue
impl Unpin for StatsQueue
impl UnwindSafe for StatsQueue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more