[][src]Struct readings_probe::OsReadings

pub struct OsReadings {
    pub virtual_size: u64,
    pub resident_size: u64,
    pub resident_size_max: u64,
    pub user_time: Duration,
    pub system_time: Duration,
    pub minor_fault: u64,
    pub major_fault: u64,
}

Fields

virtual_size: u64

Process virtual size

resident_size: u64

Process resident size

resident_size_max: u64

Process resident size high-water mark

user_time: Duration

CPU Time in userland (in s)

system_time: Duration

CPU Time in kernel (in s)

minor_fault: u64

Minor faults counter

major_fault: u64

Minor faults counter

Trait Implementations

impl Debug for OsReadings[src]

Auto Trait Implementations

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, 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.