[][src]Struct x86_64_xsave::XSaveHeader

#[repr(C)]
pub struct XSaveHeader { pub XSTATE_BV: StateComponentBitmap, pub XCOMP_BV: CompactionStateComponentBitmap, // some fields omitted }

Layout of a XSAVE area.

Fields

XSTATE_BV: StateComponentBitmap

Identifies the state components in the XSAVE area.

If a state component is not present in this bitmap, then it is not present in the legacy or extended area.

XCOMP_BV: CompactionStateComponentBitmap

Identifies whether the extended region is compacted, and, if so, the format specifics as specified in Section 13.4.3 of the Intel® 64 and IA-32 Architectures Software Developer's Manual Volume 1 (Basic Architecture).

Trait Implementations

impl Default for XSaveHeader[src]

impl Clone for XSaveHeader[src]

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

Performs copy-assignment from source. Read more

impl Debug for XSaveHeader[src]

Auto Trait Implementations

impl Send for XSaveHeader

impl Sync for XSaveHeader

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]