Struct Processor

Source
pub struct Processor { /* private fields */ }
Expand description

Each instance of this struct represent a block in /proc/cpuinfo. See (CpuInfo)[struct.CpuInfo.html].

Fields of this struct reference to proc.c.

Note: this is for x86_64, other architecture may not work.

Implementations§

Source§

impl Processor

Source

pub fn processor(&self) -> &u8

Source

pub fn vendor_id(&self) -> &String

Source

pub fn cpu_family(&self) -> &u8

Source

pub fn model(&self) -> &u8

Source

pub fn model_name(&self) -> &String

Source

pub fn stepping(&self) -> &Option<u8>

Return None if stepping is not number or the fields doesn’t appear. In first case, it should be “unknonw”, but it doesn’t actually be checked.

Source

pub fn microcode(&self) -> &Option<u32>

Source

pub fn cpu_mhz(&self) -> &Option<f64>

Source

pub fn cache_size(&self) -> &Option<u32>

Unit is KB(KiB).

Source

pub fn physical_id(&self) -> &Option<u16>

Source

pub fn siblings(&self) -> &Option<u32>

Source

pub fn core_id(&self) -> &Option<u16>

Source

pub fn cpu_cores(&self) -> &Option<u16>

Source

pub fn apicid(&self) -> &Option<u16>

Source

pub fn initial_apicid(&self) -> &Option<u16>

Source

pub fn fdiv_bug(&self) -> &Option<bool>

Source

pub fn f00f_bug(&self) -> &Option<bool>

Source

pub fn coma_bug(&self) -> &Option<bool>

Source

pub fn fpu(&self) -> &Option<bool>

always true if appears.

Source

pub fn fpu_exception(&self) -> &Option<bool>

always true if appears.

Source

pub fn cpuid_level(&self) -> &Option<i32>

Source

pub fn wp(&self) -> &Option<bool>

always true if appears.

Source

pub fn flags(&self) -> &Vec<String>

Source

pub fn bugs(&self) -> &Vec<String>

Source

pub fn bogomips(&self) -> &f64

Source

pub fn tlb_size(&self) -> &Option<i32>

Source

pub fn clflush_size(&self) -> &u16

Source

pub fn cache_alignment(&self) -> &i32

Source

pub fn address_sizes(&self) -> &(u8, u8)

(bits physical, bits virtual)

Source

pub fn power_management(&self) -> &Vec<String>

Trait Implementations§

Source§

impl Clone for Processor

Source§

fn clone(&self) -> Processor

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Processor

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for Processor

Source§

type Err = ProcErr

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Processor, ProcErr>

Parses a string s to return a value of this type. Read more
Source§

impl PartialEq for Processor

Source§

fn eq(&self, other: &Processor) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Processor

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.