[][src]Struct libc_interface::rusage

#[repr(C)]pub struct rusage {
    pub ru_utime: timeval,
    pub ru_stime: timeval,
    pub ru_maxrss: i32,
    pub ru_ixrss: i32,
    pub ru_idrss: i32,
    pub ru_isrss: i32,
    pub ru_minflt: i32,
    pub ru_majflt: i32,
    pub ru_nswap: i32,
    pub ru_inblock: i32,
    pub ru_oublock: i32,
    pub ru_msgsnd: i32,
    pub ru_msgrcv: i32,
    pub ru_nsignals: i32,
    pub ru_nvcsw: i32,
    pub ru_nivcsw: i32,
}

Fields

ru_utime: timevalru_stime: timevalru_maxrss: i32ru_ixrss: i32ru_idrss: i32ru_isrss: i32ru_minflt: i32ru_majflt: i32ru_nswap: i32ru_inblock: i32ru_oublock: i32ru_msgsnd: i32ru_msgrcv: i32ru_nsignals: i32ru_nvcsw: i32ru_nivcsw: i32

Trait Implementations

impl Clone for rusage[src]

impl Copy for rusage[src]

impl Debug for rusage[src]

impl Eq for rusage[src]

impl Hash for rusage[src]

impl PartialEq<rusage> for rusage[src]

impl StructuralEq for rusage[src]

impl StructuralPartialEq for rusage[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, 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.