pub struct FLOATING_SAVE_AREA_X86 {
    pub control_word: u32,
    pub status_word: u32,
    pub tag_word: u32,
    pub error_offset: u32,
    pub error_selector: u32,
    pub data_offset: u32,
    pub data_selector: u32,
    pub register_area: [u8; 80],
    pub cr0_npx_state: u32,
}
Expand description

x86 floating point state

This struct matches the definition of the FLOATING_SAVE_AREA struct from WinNT.h.

Fields

control_word: u32status_word: u32tag_word: u32error_offset: u32error_selector: u32data_offset: u32data_selector: u32register_area: [u8; 80]cr0_npx_state: u32

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Return FLOATING_SAVE_AREA_X86 { control_word: Default::default(), status_word: Default::default(), tag_word: Default::default(), error_offset: Default::default(), error_selector: Default::default(), data_offset: Default::default(), data_selector: Default::default(), register_area: [0 ; 80], cr0_npx_state: Default::default() }

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.