Struct libc::rusage

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

Fields§

§ru_utime: timeval§ru_stime: timeval§ru_maxrss: c_long§ru_ixrss: c_long§ru_idrss: c_long§ru_isrss: c_long§ru_minflt: c_long§ru_majflt: c_long§ru_nswap: c_long§ru_inblock: c_long§ru_oublock: c_long§ru_msgsnd: c_long§ru_msgrcv: c_long§ru_nsignals: c_long§ru_nvcsw: c_long§ru_nivcsw: c_long

Trait Implementations§

source§

impl Clone for rusage

source§

fn clone(&self) -> rusage

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for rusage

Auto Trait Implementations§

§

impl Freeze for rusage

§

impl RefUnwindSafe for rusage

§

impl Send for rusage

§

impl Sync for rusage

§

impl Unpin for rusage

§

impl UnwindSafe for rusage

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.