[][src]Struct rsys::linux::cpu::Core

pub struct Core {
    pub id: u32,
    pub min_freq: u64,
    pub cur_freq: u64,
    pub max_freq: u64,
}

Represents a virtual core in a cpu

Fields

id: u32min_freq: u64cur_freq: u64max_freq: u64

Implementations

impl Core[src]

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

Updates all frequencies of this core to currently available values

Trait Implementations

impl Debug for Core[src]

impl Default for Core[src]

Auto Trait Implementations

impl RefUnwindSafe for Core

impl Send for Core

impl Sync for Core

impl Unpin for Core

impl UnwindSafe for Core

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.