[][src]Union x86_64_xsave::state_components::UserStateComponent

pub union UserStateComponent {
    pub not_sizing_queryable: NotSizingQueryableUserStateComponent,
    pub sizing_queryable: SizingQueryableUserStateComponent,
}

An user state component.

Fields

not_sizing_queryable: NotSizingQueryableUserStateComponent

An user state component whose size can not be queried using CPUID.

sizing_queryable: SizingQueryableUserStateComponent

An user state component whose size can be queried using CPUID.

Methods

impl UserStateComponent[src]

pub const x87: UserStateComponent[src]

x87 user state component.

pub const SSE: UserStateComponent[src]

SSE user state component.

pub const AVX: UserStateComponent[src]

AVX user state component.

pub const BNDREGS_MPX: UserStateComponent[src]

BNDREGS_MPX user state component.

pub const BNDCSR_MPX: UserStateComponent[src]

BNDCSR_MPX user state component.

pub const opmask_AVX_512: UserStateComponent[src]

opmask_AVX_512 user state component.

pub const ZMM_Hi256_AVX_512: UserStateComponent[src]

ZMM_Hi256_AVX_512 user state component.

pub const Hi16_ZMM_AVX_512: UserStateComponent[src]

Hi16_ZMM_AVX_512 user state component.

pub const PKRU: UserStateComponent[src]

PKRU user state component.

pub const fn to_state_component(self) -> StateComponent[src]

To a state component.

Trait Implementations

impl Clone for UserStateComponent[src]

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

Performs copy-assignment from source. Read more

impl Copy for UserStateComponent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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, 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> Any for T where
    T: 'static + ?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.