[][src]Struct hermit::x86_64::kernel::processor::XSaveLegacyRegion

#[repr(C, align(16))]pub struct XSaveLegacyRegion {
    pub fpu_control_word: u16,
    pub fpu_status_word: u16,
    pub fpu_tag_word: u16,
    pub fpu_opcode: u16,
    pub fpu_instruction_pointer: u32,
    pub fpu_instruction_pointer_high_or_cs: u32,
    pub fpu_data_pointer: u32,
    pub fpu_data_pointer_high_or_ds: u32,
    pub mxcsr: u32,
    pub mxcsr_mask: u32,
    pub st_space: [u8; 128],
    pub xmm_space: [u8; 256],
    pub padding: [u8; 96],
}

Fields

fpu_control_word: u16fpu_status_word: u16fpu_tag_word: u16fpu_opcode: u16fpu_instruction_pointer: u32fpu_instruction_pointer_high_or_cs: u32fpu_data_pointer: u32fpu_data_pointer_high_or_ds: u32mxcsr: u32mxcsr_mask: u32st_space: [u8; 128]xmm_space: [u8; 256]padding: [u8; 96]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.