[][src]Struct psutil::cpu::CpuTimesPercentCollector

pub struct CpuTimesPercentCollector { /* fields omitted */ }

Get CpuTimesPercents in non-blocking mode.

Example:

let mut cpu_times_percent_collector = psutil::cpu::CpuTimesPercentCollector::new().unwrap();

let cpu_times_percent = cpu_times_percent_collector.cpu_times_percent().unwrap();
let cpu_times_percent_percpu = cpu_times_percent_collector.cpu_times_percent_percpu().unwrap();

Methods

impl CpuTimesPercentCollector[src]

pub fn new() -> Result<CpuTimesPercentCollector>[src]

Initialize the CpuTimesPercentCollector so the method calls are ready to be used.

pub fn cpu_times_percent(&mut self) -> Result<CpuTimesPercent>[src]

Returns a CpuTimesPercent since the last time this was called or since CpuTimesPercentCollector::new() was called.

pub fn cpu_times_percent_percpu(&mut self) -> Result<Vec<CpuTimesPercent>>[src]

Returns a CpuTimesPercent for each cpu since the last time this was called or since CpuTimesPercentCollector::new() was called.

Trait Implementations

impl Clone for CpuTimesPercentCollector[src]

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