[][src]Struct bpf_sys::rtnl_link_stats64

#[repr(C)]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 Clone for rtnl_link_stats64[src]

impl Copy for rtnl_link_stats64[src]

impl Debug 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.