[][src]Struct heim::process::CpuTime

pub struct CpuTime(_);
This is supported on feature="process" only.

Accumulated CPU time for specific process.

Methods

impl CpuTime[src]

pub fn user(
    &self
) -> Quantity<dyn Dimension<M = Z0, I = Z0, N = Z0, T = PInt<UInt<UTerm, B1>>, Th = Z0, J = Z0, Kind = dyn Kind + 'static, L = Z0> + 'static, dyn Units<f64, thermodynamic_temperature = kelvin, luminous_intensity = candela, amount_of_substance = mole, mass = kilogram, time = second, electric_current = ampere, length = meter> + 'static, f64>
[src]

This is supported on feature="process" only.

Returns amount of CPU time spent in user mode within the process.

pub fn system(
    &self
) -> Quantity<dyn Dimension<M = Z0, I = Z0, N = Z0, T = PInt<UInt<UTerm, B1>>, Th = Z0, J = Z0, Kind = dyn Kind + 'static, L = Z0> + 'static, dyn Units<f64, thermodynamic_temperature = kelvin, luminous_intensity = candela, amount_of_substance = mole, mass = kilogram, time = second, electric_current = ampere, length = meter> + 'static, f64>
[src]

This is supported on feature="process" only.

Returns amount of CPU time spent in kernel within the process.

Trait Implementations

impl Debug for CpuTime[src]

Auto Trait Implementations

impl !RefUnwindSafe for CpuTime

impl Send for CpuTime

impl Sync for CpuTime

impl !Unpin for CpuTime

impl !UnwindSafe for CpuTime

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.