Struct rtnetlink::LinkStats[][src]

#[repr(C)]
pub struct LinkStats<T> { pub rx_packets: T, pub tx_packets: T, pub rx_bytes: T, pub tx_bytes: T, pub rx_errors: T, pub tx_errors: T, pub rx_dropped: T, pub tx_dropped: T, pub multicast: T, pub collisions: T, pub rx_length_errors: T, pub rx_over_errors: T, pub rx_crc_errors: T, pub rx_frame_errors: T, pub rx_fifo_errors: T, pub rx_missed_errors: T, pub tx_aborted_errors: T, pub tx_carrier_errors: T, pub tx_fifo_errors: T, pub tx_heartbeat_errors: T, pub tx_window_errors: T, pub rx_compressed: T, pub tx_compressed: T, pub rx_nohandler: T, }

Fields

total packets received

total packets transmitted

total bytes received

total bytes transmitted

bad packets received

packet transmit problems

no space in linux buffers

no space available in linux

multicast packets received

receiver ring buff overflow

received packets with crc error

received frame alignment errors

recv'r fifo overrun

receiver missed packet

dropped, no handler found

Trait Implementations

impl<T: Debug> Debug for LinkStats<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Clone> Clone for LinkStats<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for LinkStats<T>
[src]

impl<T: Eq> Eq for LinkStats<T>
[src]

impl<T: PartialEq> PartialEq for LinkStats<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<T> Send for LinkStats<T> where
    T: Send

impl<T> Sync for LinkStats<T> where
    T: Sync