Struct core::arch::x86::CpuidResult
1.27.0 · source · pub struct CpuidResult {
pub eax: u32,
pub ebx: u32,
pub ecx: u32,
pub edx: u32,
}
Available on x86 and (x86 or x86-64) only.
Expand description
Result of the cpuid
instruction.
Fields§
§eax: u32
EAX register.
ebx: u32
EBX register.
ecx: u32
ECX register.
edx: u32
EDX register.
Trait Implementations§
source§impl Clone for CpuidResult
impl Clone for CpuidResult
source§fn clone(&self) -> CpuidResult
fn clone(&self) -> CpuidResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CpuidResult
impl Debug for CpuidResult
source§impl Ord for CpuidResult
impl Ord for CpuidResult
source§fn cmp(&self, other: &CpuidResult) -> Ordering
fn cmp(&self, other: &CpuidResult) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<CpuidResult> for CpuidResult
impl PartialEq<CpuidResult> for CpuidResult
source§fn eq(&self, other: &CpuidResult) -> bool
fn eq(&self, other: &CpuidResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<CpuidResult> for CpuidResult
impl PartialOrd<CpuidResult> for CpuidResult
source§fn partial_cmp(&self, other: &CpuidResult) -> Option<Ordering>
fn partial_cmp(&self, other: &CpuidResult) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more