#[repr(C)]pub struct Fpu {
pub fpr: [FpuReg; 8],
pub fcw: u16,
pub fsw: u16,
pub ftwx: u8,
pub last_opcode: u16,
pub last_ip: u64,
pub last_dp: u64,
pub xmm: [[u8; 16]; 16],
pub mxcsr: u32,
}Expand description
State of a VCPU’s floating point unit.
Fields§
§fpr: [FpuReg; 8]§fcw: u16§fsw: u16§ftwx: u8§last_opcode: u16§last_ip: u64§last_dp: u64§xmm: [[u8; 16]; 16]§mxcsr: u32Trait Implementations§
Source§impl<'de> Deserialize<'de> for Fpu
impl<'de> Deserialize<'de> for Fpu
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Fpu
Auto Trait Implementations§
impl Freeze for Fpu
impl RefUnwindSafe for Fpu
impl Send for Fpu
impl Sync for Fpu
impl Unpin for Fpu
impl UnwindSafe for Fpu
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