Struct procinfo::pid::Io[][src]

pub struct Io {
    pub rchar: usize,
    pub wchar: usize,
    pub syscr: usize,
    pub syscw: usize,
    pub read_bytes: usize,
    pub write_bytes: usize,
    pub cancelled_write_bytes: usize,
}

The I/O information of a process

Fields

rchar: usizewchar: usizesyscr: usizesyscw: usizeread_bytes: usizewrite_bytes: usizecancelled_write_bytes: usize

Trait Implementations

impl Debug for Io[src]

impl Default for Io[src]

impl Eq for Io[src]

impl Hash for Io[src]

impl PartialEq<Io> for Io[src]

impl StructuralEq for Io[src]

impl StructuralPartialEq for Io[src]

Auto Trait Implementations

impl RefUnwindSafe for Io

impl Send for Io

impl Sync for Io

impl Unpin for Io

impl UnwindSafe for Io

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, 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.