[][src]Struct psutil::host::LoadAverage

pub struct LoadAverage {
    pub one: f32,
    pub five: f32,
    pub fifteen: f32,
    pub runnable: i32,
    pub total_runnable: i32,
    pub last_pid: PID,
}

Fields

one: f32

number of jobs in the run queue averaged over 1 minute

five: f32

number of jobs in the run queue averaged over 5 minute

fifteen: f32

number of jobs in the run queue averaged over 15 minute

runnable: i32

current number of runnable kernel entities

total_runnable: i32

total number of runnable kernel entities

last_pid: PID

pid for the most recently created process

Trait Implementations

impl Debug for LoadAverage[src]

Auto Trait Implementations

impl Send for LoadAverage

impl Sync for LoadAverage

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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