Struct rustix::backend::c::rtnl_link_stats64
source · #[repr(C)]pub(crate) struct rtnl_link_stats64 {Show 25 fields
pub rx_packets: u64,
pub tx_packets: u64,
pub rx_bytes: u64,
pub tx_bytes: u64,
pub rx_errors: u64,
pub tx_errors: u64,
pub rx_dropped: u64,
pub tx_dropped: u64,
pub multicast: u64,
pub collisions: u64,
pub rx_length_errors: u64,
pub rx_over_errors: u64,
pub rx_crc_errors: u64,
pub rx_frame_errors: u64,
pub rx_fifo_errors: u64,
pub rx_missed_errors: u64,
pub tx_aborted_errors: u64,
pub tx_carrier_errors: u64,
pub tx_fifo_errors: u64,
pub tx_heartbeat_errors: u64,
pub tx_window_errors: u64,
pub rx_compressed: u64,
pub tx_compressed: u64,
pub rx_nohandler: u64,
pub rx_otherhost_dropped: u64,
}
Fields§
§rx_packets: u64
§tx_packets: u64
§rx_bytes: u64
§tx_bytes: u64
§rx_errors: u64
§tx_errors: u64
§rx_dropped: u64
§tx_dropped: u64
§multicast: u64
§collisions: u64
§rx_length_errors: u64
§rx_over_errors: u64
§rx_crc_errors: u64
§rx_frame_errors: u64
§rx_fifo_errors: u64
§rx_missed_errors: u64
§tx_aborted_errors: u64
§tx_carrier_errors: u64
§tx_fifo_errors: u64
§tx_heartbeat_errors: u64
§tx_window_errors: u64
§rx_compressed: u64
§tx_compressed: u64
§rx_nohandler: u64
§rx_otherhost_dropped: u64
Trait Implementations§
source§impl Clone for rtnl_link_stats64
impl Clone for rtnl_link_stats64
source§fn clone(&self) -> rtnl_link_stats64
fn clone(&self) -> rtnl_link_stats64
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 rtnl_link_stats64
impl Debug for rtnl_link_stats64
impl Copy for rtnl_link_stats64
Auto Trait Implementations§
impl Freeze for rtnl_link_stats64
impl RefUnwindSafe for rtnl_link_stats64
impl Send for rtnl_link_stats64
impl Sync for rtnl_link_stats64
impl Unpin for rtnl_link_stats64
impl UnwindSafe for rtnl_link_stats64
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