[][src]Struct nc::rusage_t

#[repr(C)]
pub struct rusage_t {
    pub ru_utime: timeval_t,
    pub ru_maxrss: isize,
    pub ru_ixrss: isize,
    pub ru_idrss: isize,
    pub ru_isrss: isize,
    pub ru_minflt: isize,
    pub ru_majflt: isize,
    pub ru_nswap: isize,
    pub ru_inblock: isize,
    pub ru_oublock: isize,
    pub ru_msgsnd: isize,
    pub ru_msgrcv: isize,
    pub ru_nsignals: isize,
    pub ru_nvcsw: isize,
    pub ru_nivcsw: isize,
    // some fields omitted
}

Fields

ru_utime: timeval_t

user time used

ru_maxrss: isize

maximum resident set size

ru_ixrss: isize

integral shared memory size

ru_idrss: isize

integral unshared data size

ru_isrss: isize

integral unshared stack size

ru_minflt: isize

page reclaims

ru_majflt: isize

page faults

ru_nswap: isize

swaps

ru_inblock: isize

block input operations

ru_oublock: isize

block output operations

ru_msgsnd: isize

messages sent

ru_msgrcv: isize

messages received

ru_nsignals: isize

signals received

ru_nvcsw: isize

voluntary context switches

ru_nivcsw: isize

involuntary

Auto Trait Implementations

impl Unpin for rusage_t

impl Send for rusage_t

impl Sync for rusage_t

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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