[][src]Struct mprober_lib::cpu::CPU

pub struct CPU {
    pub physical_id: usize,
    pub model_name: String,
    pub cpus_mhz: Vec<f64>,
    pub siblings: usize,
    pub cpu_cores: usize,
}

Fields

physical_id: usizemodel_name: Stringcpus_mhz: Vec<f64>siblings: usizecpu_cores: usize

Trait Implementations

impl Clone for CPU[src]

impl Debug for CPU[src]

impl Default for CPU[src]

impl Hash for CPU[src]

impl PartialEq<CPU> for CPU[src]

Auto Trait Implementations

impl RefUnwindSafe for CPU

impl Send for CPU

impl Sync for CPU

impl Unpin for CPU

impl UnwindSafe for CPU

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> Same<T> for T

type Output = T

Should always be Self

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.