Struct core::arch::x86_64::CpuidResult 1.27.0[−][src]
pub struct CpuidResult { pub eax: u32, pub ebx: u32, pub ecx: u32, pub edx: u32, }
Result of the cpuid
instruction.
Fields
eax: u32
EAX register.
ebx: u32
EBX register.
ecx: u32
ECX register.
edx: u32
EDX register.
Trait Implementations
impl Copy for CpuidResult
[src]
impl Copy for CpuidResult
impl Clone for CpuidResult
[src]
impl Clone for CpuidResult
fn clone(&self) -> CpuidResult
[src]
fn clone(&self) -> CpuidResult
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Eq for CpuidResult
[src]
impl Eq for CpuidResult
impl Ord for CpuidResult
[src]
impl Ord for CpuidResult
fn cmp(&self, other: &CpuidResult) -> Ordering
[src]
fn cmp(&self, other: &CpuidResult) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self where
Self: Sized,
1.21.0[src]
fn max(self, other: Self) -> Self where
Self: Sized,
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self where
Self: Sized,
1.21.0[src]
fn min(self, other: Self) -> Self where
Self: Sized,
Compares and returns the minimum of two values. Read more
impl PartialEq for CpuidResult
[src]
impl PartialEq for CpuidResult
fn eq(&self, other: &CpuidResult) -> bool
[src]
fn eq(&self, other: &CpuidResult) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &CpuidResult) -> bool
[src]
fn ne(&self, other: &CpuidResult) -> bool
This method tests for !=
.
impl PartialOrd for CpuidResult
[src]
impl PartialOrd for CpuidResult
fn partial_cmp(&self, other: &CpuidResult) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &CpuidResult) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &CpuidResult) -> bool
[src]
fn lt(&self, other: &CpuidResult) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &CpuidResult) -> bool
[src]
fn le(&self, other: &CpuidResult) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &CpuidResult) -> bool
[src]
fn gt(&self, other: &CpuidResult) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &CpuidResult) -> bool
[src]
fn ge(&self, other: &CpuidResult) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
Auto Trait Implementations
impl Send for CpuidResult
impl Send for CpuidResult
impl Sync for CpuidResult
impl Sync for CpuidResult