#[repr(C)]
pub struct CpuidFunctionEntry { pub eax_in: u32, pub ecx_in: u32, pub xcr0_in: u64, pub xss_in: u64, pub eax: u32, pub ebx: u32, pub ecx: u32, pub edx: u32, /* private fields */ }
Expand description

An entry in the SNP CPUID Page

Fields

eax_in: u32

function

ecx_in: u32

index

xcr0_in: u64

register state when cpuid is called

xss_in: u64

register state when cpuid is called

eax: u32

cpuid out

ebx: u32

cpuid out

ecx: u32

cpuid out

edx: u32

cpuid out

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

The constant default value.

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.