[][src]Struct procfs::LoadAverage

pub struct LoadAverage {
    pub one: f32,
    pub five: f32,
    pub fifteen: f32,
    pub cur: u32,
    pub max: u32,
    pub latest_pid: u32,
}

Load average figures.

Load averages are calculated as the number of jobs in the run queue (state R) or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes.

Fields

one: f32

The one-minute load average

five: f32

The five-minute load average

fifteen: f32

The fifteen-minute load average

cur: u32

The number of currently runnable kernel scheduling entities (processes, threads).

max: u32

The number of kernel scheduling entities that currently exist on the system.

latest_pid: u32

The fifth field is the PID of the process that was most recently created on the system.

Implementations

impl LoadAverage[src]

pub fn new() -> ProcResult<LoadAverage>[src]

Reads load average info from /proc/loadavg

Trait Implementations

impl Debug for LoadAverage[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.