pub enum Stats64Attr {
ConnCount(u64),
IncPktCount(u64),
OutPktCount(u64),
IncByteCount(u64),
OutByteCount(u64),
ConnRate(u64),
IncPktRate(u64),
OutPktRate(u64),
IncByteRate(u64),
OutByteRate(u64),
}
Variants§
ConnCount(u64)
IncPktCount(u64)
OutPktCount(u64)
IncByteCount(u64)
OutByteCount(u64)
ConnRate(u64)
IncPktRate(u64)
OutPktRate(u64)
IncByteRate(u64)
OutByteRate(u64)
Trait Implementations§
Source§impl Clone for Stats64Attr
impl Clone for Stats64Attr
Source§fn clone(&self) -> Stats64Attr
fn clone(&self) -> Stats64Attr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Stats64Attr
impl Debug for Stats64Attr
Source§impl PartialEq for Stats64Attr
impl PartialEq for Stats64Attr
impl Eq for Stats64Attr
impl StructuralPartialEq for Stats64Attr
Auto Trait Implementations§
impl Freeze for Stats64Attr
impl RefUnwindSafe for Stats64Attr
impl Send for Stats64Attr
impl Sync for Stats64Attr
impl Unpin for Stats64Attr
impl UnwindSafe for Stats64Attr
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