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

Return value EAX register

Return value EBX register

Return value ECX register

Return value EDX register

Trait Implementations

impl Copy for CpuIdResult
[src]

impl Clone for CpuIdResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CpuIdResult
[src]

Formats the value using the given formatter. Read more

impl Default for CpuIdResult
[src]

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

Auto Trait Implementations

impl Send for CpuIdResult

impl Sync for CpuIdResult