[][src]Struct libuv::misc::CpuInfo

pub struct CpuInfo {
    pub model: String,
    pub speed: i32,
    pub user_time: u64,
    pub nice_time: u64,
    pub sys_time: u64,
    pub idle_time: u64,
    pub irq_time: u64,
}

Data type for CPU information.

Fields

model: Stringspeed: i32user_time: u64nice_time: u64sys_time: u64idle_time: u64irq_time: u64

Auto Trait Implementations

impl RefUnwindSafe for CpuInfo

impl Send for CpuInfo

impl Sync for CpuInfo

impl Unpin for CpuInfo

impl UnwindSafe for CpuInfo

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.