Struct raw_cpuid::ExtendedState

source ·
pub struct ExtendedState {
    pub subleaf: u32,
    /* private fields */
}
Expand description

ExtendedState subleaf structure for things that need to be restored.

Fields§

§subleaf: u32

Implementations§

source§

impl ExtendedState

source

pub fn register(&self) -> ExtendedRegisterType

Returns which register this specific extended subleaf contains information for.

source

pub fn size(&self) -> u32

The size in bytes (from the offset specified in EBX) of the save area for an extended state feature associated with a valid sub-leaf index, n. This field reports 0 if the sub-leaf index, n, is invalid.

source

pub fn offset(&self) -> u32

The offset in bytes of this extended state components save area from the beginning of the XSAVE/XRSTOR area.

source

pub fn location(&self) -> ExtendedRegisterStateLocation

source

pub fn is_in_ia32_xss(&self) -> bool

True if the bit n (corresponding to the sub-leaf index) is supported in the IA32_XSS MSR;

§Deprecation note

This will likely be removed in the future. Use location() instead.

source

pub fn is_in_xcr0(&self) -> bool

True if bit n is supported in XCR0.

§Deprecation note

This will likely be removed in the future. Use location() instead.

source

pub fn is_compacted_format(&self) -> bool

Returns true when the compacted format of an XSAVE area is used, this extended state component located on the next 64-byte boundary following the preceding state component (otherwise, it is located immediately following the preceding state component).

Trait Implementations§

source§

impl Debug for ExtendedState

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.