[][src]Struct napi_sys::uv_rusage_t

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

Fields

ru_utime: uv_timeval_tru_stime: uv_timeval_tru_maxrss: u64ru_ixrss: u64ru_idrss: u64ru_isrss: u64ru_minflt: u64ru_majflt: u64ru_nswap: u64ru_inblock: u64ru_oublock: u64ru_msgsnd: u64ru_msgrcv: u64ru_nsignals: u64ru_nvcsw: u64ru_nivcsw: u64

Trait Implementations

impl Clone for uv_rusage_t[src]

impl Copy for uv_rusage_t[src]

impl Debug for uv_rusage_t[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.