#[repr(i32)]
#[non_exhaustive]
pub enum UsageWho {
RUSAGE_SELF,
RUSAGE_CHILDREN,
RUSAGE_THREAD,
}
Expand description
Whose resource usage should be returned by getrusage
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
RUSAGE_SELF
Resource usage for the current process.
RUSAGE_CHILDREN
Resource usage for all the children that have terminated and been waited for.
RUSAGE_THREAD
Resource usage for the calling thread.
Trait Implementations
sourceimpl Ord for UsageWho
impl Ord for UsageWho
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<UsageWho> for UsageWho
impl PartialOrd<UsageWho> for UsageWho
sourcefn partial_cmp(&self, other: &UsageWho) -> Option<Ordering>
fn partial_cmp(&self, other: &UsageWho) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for UsageWho
impl Eq for UsageWho
impl StructuralEq for UsageWho
impl StructuralPartialEq for UsageWho
Auto Trait Implementations
impl RefUnwindSafe for UsageWho
impl Send for UsageWho
impl Sync for UsageWho
impl Unpin for UsageWho
impl UnwindSafe for UsageWho
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more