[][src]Struct psutil::cpu::CpuTimesPercent

pub struct CpuTimesPercent {
    pub user: f64,
    pub nice: f64,
    pub system: f64,
    pub idle: f64,
    pub iowait: f64,
    pub irq: f64,
    pub softirq: f64,
    pub steal: f64,
    pub guest: f64,
    pub guest_nice: f64,
}

Fields

user: f64

Percentage of time spent by normal processes executing in user mode between two instants; on Linux this also includes guest time

nice: f64

Percentage of time spent by niced (prioritized) processes executing in user mode between two instants; on Linux this also includes guest_nice time

system: f64

Percentage of time spent by processes executing in kernel mode between two instants

idle: f64

Percentage of time spent doing nothing between two instants

iowait: f64

Percentage of time spent waiting for I/O to complete between two instants

irq: f64

Percentage of time spent for servicing hardware interrupts between two instants

softirq: f64

Percentage of time spent for servicing software interrupts between two instants

steal: f64

Percentage of time spent by other operating systems running in a virtualized environment between two instants

guest: f64

Percentage of time spent running a virtual CPU for guest operating systems under the control of the Linux kernel between two instants

guest_nice: f64

Percentage of time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) between two instants

Trait Implementations

impl Debug for CpuTimesPercent[src]

Auto Trait Implementations

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]