Struct dmi::ProcessorInfo

source ·
#[repr(packed(1))]
pub struct ProcessorInfo {
Show 23 fields pub socket_designation: u8, pub processor_kind: u8, pub processor_family: u8, pub processor_manufacturer: u8, pub processor_id: u64, pub processor_version: u8, pub voltage: u8, pub external_clock: u16, pub max_speed: u16, pub current_speed: u16, pub status: u8, pub processor_upgrade: u8, pub l1_cache_handle: u16, pub l2_cache_handle: u16, pub l3_cache_handle: u16, pub serial_number: u8, pub asset_tag: u8, pub part_number: u8, pub core_count: u8, pub core_enabled: u8, pub thread_count: u8, pub processor_characteristics: u16, pub processor_family_2: u16,
}

Fields§

§socket_designation: u8§processor_kind: u8§processor_family: u8§processor_manufacturer: u8§processor_id: u64§processor_version: u8§voltage: u8§external_clock: u16§max_speed: u16§current_speed: u16§status: u8§processor_upgrade: u8§l1_cache_handle: u16§l2_cache_handle: u16§l3_cache_handle: u16§serial_number: u8§asset_tag: u8§part_number: u8§core_count: u8§core_enabled: u8§thread_count: u8§processor_characteristics: u16§processor_family_2: u16

Trait Implementations§

source§

impl Clone for ProcessorInfo

source§

fn clone(&self) -> ProcessorInfo

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 ProcessorInfo

source§

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

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

impl Default for ProcessorInfo

source§

fn default() -> ProcessorInfo

Returns the “default value” for a type. Read more
source§

impl Plain for ProcessorInfo

source§

fn from_bytes(bytes: &[u8]) -> Result<&Self, Error>where Self: Sized,

source§

fn slice_from_bytes(bytes: &[u8]) -> Result<&[Self], Error>where Self: Sized,

source§

fn slice_from_bytes_len(bytes: &[u8], len: usize) -> Result<&[Self], Error>where Self: Sized,

source§

fn from_mut_bytes(bytes: &mut [u8]) -> Result<&mut Self, Error>where Self: Sized,

source§

fn slice_from_mut_bytes(bytes: &mut [u8]) -> Result<&mut [Self], Error>where Self: Sized,

source§

fn slice_from_mut_bytes_len( bytes: &mut [u8], len: usize ) -> Result<&mut [Self], Error>where Self: Sized,

source§

fn copy_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Error>

source§

impl TableKind for ProcessorInfo

source§

const KIND: u8 = 4u8

source§

impl Copy for ProcessorInfo

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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 Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.