#[repr(C, align(16))]pub struct _XSAVE_FORMAT {Show 16 fields
pub ControlWord: WORD,
pub StatusWord: WORD,
pub TagWord: BYTE,
pub Reserved1: BYTE,
pub ErrorOpcode: WORD,
pub ErrorOffset: DWORD,
pub ErrorSelector: WORD,
pub Reserved2: WORD,
pub DataOffset: DWORD,
pub DataSelector: WORD,
pub Reserved3: WORD,
pub MxCsr: DWORD,
pub MxCsr_Mask: DWORD,
pub FloatRegisters: [M128A; 8],
pub XmmRegisters: [M128A; 16],
pub Reserved4: [BYTE; 96],
}
Fields§
§ControlWord: WORD
§StatusWord: WORD
§TagWord: BYTE
§Reserved1: BYTE
§ErrorOpcode: WORD
§ErrorOffset: DWORD
§ErrorSelector: WORD
§Reserved2: WORD
§DataOffset: DWORD
§DataSelector: WORD
§Reserved3: WORD
§MxCsr: DWORD
§MxCsr_Mask: DWORD
§FloatRegisters: [M128A; 8]
§XmmRegisters: [M128A; 16]
§Reserved4: [BYTE; 96]
Trait Implementations§
Source§impl Clone for _XSAVE_FORMAT
impl Clone for _XSAVE_FORMAT
Source§fn clone(&self) -> _XSAVE_FORMAT
fn clone(&self) -> _XSAVE_FORMAT
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _XSAVE_FORMAT
impl Debug for _XSAVE_FORMAT
Source§impl Ord for _XSAVE_FORMAT
impl Ord for _XSAVE_FORMAT
Source§fn cmp(&self, other: &_XSAVE_FORMAT) -> Ordering
fn cmp(&self, other: &_XSAVE_FORMAT) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _XSAVE_FORMAT
impl PartialEq for _XSAVE_FORMAT
Source§impl PartialOrd for _XSAVE_FORMAT
impl PartialOrd for _XSAVE_FORMAT
impl Copy for _XSAVE_FORMAT
impl Eq for _XSAVE_FORMAT
impl StructuralPartialEq for _XSAVE_FORMAT
Auto Trait Implementations§
impl Freeze for _XSAVE_FORMAT
impl RefUnwindSafe for _XSAVE_FORMAT
impl Send for _XSAVE_FORMAT
impl Sync for _XSAVE_FORMAT
impl Unpin for _XSAVE_FORMAT
impl UnwindSafe for _XSAVE_FORMAT
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more