[−][src]Struct heim_cpu::CpuTime
System CPU time.
Compatibility
For Linux additional information can be retrieved with CpuTimeExt extension trait.
Implementations
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 Clone for CpuTime
[src]
impl CpuTimeExt for CpuTime
[src]
This is supported on Linux only.
pub fn nice(&self) -> Time
[src]
pub fn io_wait(&self) -> Time
[src]
pub fn irq(&self) -> Time
[src]
pub fn soft_irq(&self) -> Time
[src]
pub fn steal(&self) -> Time
[src]
pub fn guest(&self) -> Option<Time>
[src]
pub fn guest_nice(&self) -> Option<Time>
[src]
impl Debug for CpuTime
[src]
Auto Trait Implementations
impl !RefUnwindSafe for CpuTime
[src]
impl Send for CpuTime
[src]
impl Sync for CpuTime
[src]
impl Unpin for CpuTime
[src]
impl !UnwindSafe for CpuTime
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,