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 Default for CpuIdResult
[src]

fn default() -> CpuIdResult

Returns the "default value" for a type. Read more

impl Clone for CpuIdResult
[src]

fn clone(&self) -> CpuIdResult

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for CpuIdResult
[src]

impl Debug for CpuIdResult
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.