[][src]Struct linux_taskstats::Cpu

pub struct Cpu {
    pub utime_total: Duration,
    pub stime_total: Duration,
    pub real_time_total: Duration,
    pub virtual_time_total: Duration,
}

Staticstics related to CPU time

Fields

utime_total: Duration

User CPU time

stime_total: Duration

System CPU time

real_time_total: Duration

Wall-clock running time

virtual_time_total: Duration

Virtual running time

Trait Implementations

impl Clone for Cpu[src]

impl Copy for Cpu[src]

impl Debug for Cpu[src]

Auto Trait Implementations

impl RefUnwindSafe for Cpu

impl Send for Cpu

impl Sync for Cpu

impl Unpin for Cpu

impl UnwindSafe for Cpu

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.