pub struct NetStatRow {
pub name: String,
pub ipkts: u64,
pub opkts: u64,
pub ibytes: u64,
pub obytes: u64,
pub ierrs: u64,
pub oerrs: u64,
pub drop: u64,
pub colls: u64,
pub mtu: u64,
}
Fields§
§name: String
§ipkts: u64
§opkts: u64
§ibytes: u64
§obytes: u64
§ierrs: u64
§oerrs: u64
§drop: u64
§colls: u64
§mtu: u64
Trait Implementations§
Source§impl Clone for NetStatRow
impl Clone for NetStatRow
Source§fn clone(&self) -> NetStatRow
fn clone(&self) -> NetStatRow
Returns a copy 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 NetStatRow
impl Debug for NetStatRow
Source§impl Default for NetStatRow
impl Default for NetStatRow
Source§fn default() -> NetStatRow
fn default() -> NetStatRow
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NetStatRow
impl RefUnwindSafe for NetStatRow
impl Send for NetStatRow
impl Sync for NetStatRow
impl Unpin for NetStatRow
impl UnwindSafe for NetStatRow
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