Struct raw_cpuid::CpuIdResult [−][src]
pub struct CpuIdResult {
pub eax: u32,
pub ebx: u32,
pub ecx: u32,
pub edx: u32,
}Low-level data-structure to store result of cpuid instruction.
Fields
eax: u32
Return value EAX register
ebx: u32
Return value EBX register
ecx: u32
Return value ECX register
edx: u32
Return value EDX register
Trait Implementations
impl Copy for CpuIdResult[src]
impl Copy for CpuIdResultimpl Clone for CpuIdResult[src]
impl Clone for CpuIdResultfn clone(&self) -> CpuIdResult[src]
fn clone(&self) -> CpuIdResultReturns 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)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for CpuIdResult[src]
impl Debug for CpuIdResultfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for CpuIdResult[src]
impl Default for CpuIdResultfn default() -> CpuIdResult[src]
fn default() -> CpuIdResultReturns the "default value" for a type. Read more
Auto Trait Implementations
impl Send for CpuIdResult
impl Send for CpuIdResultimpl Sync for CpuIdResult
impl Sync for CpuIdResult