Struct nix::sys::resource::Usage

source ·
pub struct Usage(/* private fields */);
Available on crate feature resource only.
Expand description

Output of getrusage with information about resource usage. Some of the fields may be unused in some platforms, and will be always zeroed out. See their manuals for details.

Implementations§

source§

impl Usage

source

pub fn user_time(&self) -> TimeVal

Total amount of time spent executing in user mode.

source

pub fn system_time(&self) -> TimeVal

Total amount of time spent executing in kernel mode.

source

pub fn max_rss(&self) -> c_long

The resident set size at its peak, in kilobytes.

source

pub fn shared_integral(&self) -> c_long

Integral value expressed in kilobytes times ticks of execution indicating the amount of text memory shared with other processes.

source

pub fn unshared_data_integral(&self) -> c_long

Integral value expressed in kilobytes times ticks of execution indicating the amount of unshared memory used by data.

source

pub fn unshared_stack_integral(&self) -> c_long

Integral value expressed in kilobytes times ticks of execution indicating the amount of unshared memory used for stack space.

source

pub fn minor_page_faults(&self) -> c_long

Number of page faults that were served without resorting to I/O, with pages that have been allocated previously by the kernel.

source

pub fn major_page_faults(&self) -> c_long

Number of page faults that were served through I/O (i.e. swap).

source

pub fn full_swaps(&self) -> c_long

Number of times all of the memory was fully swapped out.

source

pub fn block_reads(&self) -> c_long

Number of times a read was done from a block device.

source

pub fn block_writes(&self) -> c_long

Number of times a write was done to a block device.

source

pub fn ipc_sends(&self) -> c_long

Number of IPC messages sent.

source

pub fn ipc_receives(&self) -> c_long

Number of IPC messages received.

source

pub fn signals(&self) -> c_long

Number of signals received.

source

pub fn voluntary_context_switches(&self) -> c_long

Number of times a context switch was voluntarily invoked.

source

pub fn involuntary_context_switches(&self) -> c_long

Number of times a context switch was imposed by the kernel (usually due to time slice expiring or preemption by a higher priority process).

Trait Implementations§

source§

impl AsMut<rusage> for Usage

source§

fn as_mut(&mut self) -> &mut rusage

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<rusage> for Usage

source§

fn as_ref(&self) -> &rusage

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Usage

source§

fn clone(&self) -> Usage

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 Debug for Usage

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for Usage

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Usage

source§

fn eq(&self, other: &Usage) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Usage

source§

impl Eq for Usage

source§

impl StructuralPartialEq for Usage

Auto Trait Implementations§

§

impl RefUnwindSafe for Usage

§

impl Send for Usage

§

impl Sync for Usage

§

impl Unpin for Usage

§

impl UnwindSafe for Usage

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.