pub struct E1000Stats {
pub rx_ok: u64,
pub rx_errors: u64,
pub rx_crc_errors: u64,
pub rx_length_errors: u64,
pub tx_ok: u64,
pub tx_errors: u64,
pub tx_dropped: u64,
pub tx_late_collision: u64,
pub tx_underrun: u64,
pub watchdog_resets: u64,
}Expand description
Hardware statistics maintained by the driver.
Fields§
§rx_ok: u64§rx_errors: u64§rx_crc_errors: u64§rx_length_errors: u64§tx_ok: u64§tx_errors: u64§tx_dropped: u64§tx_late_collision: u64§tx_underrun: u64§watchdog_resets: u64Implementations§
Source§impl E1000Stats
impl E1000Stats
Auto Trait Implementations§
impl Freeze for E1000Stats
impl RefUnwindSafe for E1000Stats
impl Send for E1000Stats
impl Sync for E1000Stats
impl Unpin for E1000Stats
impl UnsafeUnpin for E1000Stats
impl UnwindSafe for E1000Stats
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