[][src]Struct heim::cpu::CpuTime

pub struct CpuTime(_);

System CPU time.

Compatibility

For Linux additional information can be retrieved with CpuTimeExt extension trait.

Methods

impl CpuTime[src]

pub fn user(&self) -> Time[src]

Returns time spent by normal processes executing in user mode.

Compatibility

  • on Linux this also includes guest time

pub fn system(&self) -> Time[src]

Returns time spent by processes executing in kernel mode.

pub fn idle(&self) -> Time[src]

Returns time spent doing nothing.

Trait Implementations

impl Debug for CpuTime[src]

impl CpuTimeExt for CpuTime[src]

Auto Trait Implementations

impl Unpin for CpuTime

impl Sync for CpuTime

impl Send for CpuTime

impl RefUnwindSafe for CpuTime

impl UnwindSafe for CpuTime

Blanket Implementations

impl<T> From<T> for T[src]

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