#[repr(C)]pub struct XSTATE_CONFIGURATION {
pub EnabledFeatures: DWORD64,
pub EnabledVolatileFeatures: DWORD64,
pub Size: DWORD,
pub ControlFlags: DWORD,
pub Features: [XSTATE_FEATURE; 64],
pub EnabledSupervisorFeatures: DWORD64,
pub AlignedFeatures: DWORD64,
pub AllFeatureSize: DWORD,
pub AllFeatures: [DWORD; 64],
}
Fields
EnabledFeatures: DWORD64
EnabledVolatileFeatures: DWORD64
Size: DWORD
ControlFlags: DWORD
Features: [XSTATE_FEATURE; 64]
EnabledSupervisorFeatures: DWORD64
AlignedFeatures: DWORD64
AllFeatureSize: DWORD
AllFeatures: [DWORD; 64]
Implementations
sourceimpl XSTATE_CONFIGURATION
impl XSTATE_CONFIGURATION
pub fn OptimizedSave(&self) -> DWORD
pub fn set_OptimizedSave(&mut self, val: DWORD)
pub fn CompactionEnabled(&self) -> DWORD
pub fn set_CompactionEnabled(&mut self, val: DWORD)
Trait Implementations
sourceimpl Clone for XSTATE_CONFIGURATION
impl Clone for XSTATE_CONFIGURATION
sourcefn clone(&self) -> XSTATE_CONFIGURATION
fn clone(&self) -> XSTATE_CONFIGURATION
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for XSTATE_CONFIGURATION
Auto Trait Implementations
impl RefUnwindSafe for XSTATE_CONFIGURATION
impl Send for XSTATE_CONFIGURATION
impl Sync for XSTATE_CONFIGURATION
impl Unpin for XSTATE_CONFIGURATION
impl UnwindSafe for XSTATE_CONFIGURATION
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more