[][src]Struct psutil::network::NetIOCounters

pub struct NetIOCounters {
    pub bytes_send: u64,
    pub bytes_recv: u64,
    pub packets_send: u64,
    pub packets_recv: u64,
    pub errin: u64,
    pub errout: u64,
    pub dropin: u64,
    pub dropout: u64,
}

Struct that contains information about networks

Fields

bytes_send: u64

Number of bytes sent

bytes_recv: u64

Number of bytes received

packets_send: u64

Number of packets sent

packets_recv: u64

Number of packets received

errin: u64

Total number of errors while receiving

errout: u64

Total number of errors while sending

dropin: u64

Total number of incoming packets which were dropped

dropout: u64

Total number of outgoing packets which were dropped (always 0 on macOS and BSD)

Trait Implementations

impl Copy for NetIOCounters[src]

impl Clone for NetIOCounters[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NetIOCounters[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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