Struct core::arch::x86::CpuidResult [] [src]

pub struct CpuidResult {
    pub eax: u32,
    pub ebx: u32,
    pub ecx: u32,
    pub edx: u32,
}
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 only.

Result of the cpuid instruction.

Fields

🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 only.

EAX register.

🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 only.

EBX register.

🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 only.

ECX register.

🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 only.

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 Eq for CpuidResult
[src]

impl Ord for CpuidResult
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialEq for CpuidResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for CpuidResult
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

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 Sync for CpuidResult