#[repr(C)]pub struct WOW64_FLOATING_SAVE_AREA {
pub ControlWord: DWORD,
pub StatusWord: DWORD,
pub TagWord: DWORD,
pub ErrorOffset: DWORD,
pub ErrorSelector: DWORD,
pub DataOffset: DWORD,
pub DataSelector: DWORD,
pub RegisterArea: [BYTE; 80],
pub Cr0NpxState: DWORD,
}
Fields
ControlWord: DWORD
StatusWord: DWORD
TagWord: DWORD
ErrorOffset: DWORD
ErrorSelector: DWORD
DataOffset: DWORD
DataSelector: DWORD
RegisterArea: [BYTE; 80]
Cr0NpxState: DWORD
Trait Implementations
sourceimpl Clone for WOW64_FLOATING_SAVE_AREA
impl Clone for WOW64_FLOATING_SAVE_AREA
sourcefn clone(&self) -> WOW64_FLOATING_SAVE_AREA
fn clone(&self) -> WOW64_FLOATING_SAVE_AREA
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 WOW64_FLOATING_SAVE_AREA
Auto Trait Implementations
impl RefUnwindSafe for WOW64_FLOATING_SAVE_AREA
impl Send for WOW64_FLOATING_SAVE_AREA
impl Sync for WOW64_FLOATING_SAVE_AREA
impl Unpin for WOW64_FLOATING_SAVE_AREA
impl UnwindSafe for WOW64_FLOATING_SAVE_AREA
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