#[repr(C)]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 moreimpl Copy 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