[][src]Struct nell::ffi::link::rtnl_link_stats64

pub struct rtnl_link_stats64 {
    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,
}

Fields

rx_packets: u64tx_packets: u64rx_bytes: u64tx_bytes: u64rx_errors: u64tx_errors: u64rx_dropped: u64tx_dropped: u64multicast: u64collisions: u64rx_length_errors: u64rx_over_errors: u64rx_crc_errors: u64rx_frame_errors: u64rx_fifo_errors: u64rx_missed_errors: u64tx_aborted_errors: u64tx_carrier_errors: u64tx_fifo_errors: u64tx_heartbeat_errors: u64tx_window_errors: u64rx_compressed: u64tx_compressed: u64rx_nohandler: u64

Trait Implementations

impl Bytes for rtnl_link_stats64[src]

impl Clone for rtnl_link_stats64[src]

impl Debug for rtnl_link_stats64[src]

impl Default for rtnl_link_stats64[src]

impl Eq for rtnl_link_stats64[src]

impl StructuralEq for rtnl_link_stats64[src]

impl StructuralPartialEq for rtnl_link_stats64[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.