#[repr(C, align(16))]pub struct FpState {
pub regs: [u128; 32],
pub fpcr: u32,
pub fpsr: u32,
}Expand description
FP & SIMD registers.
Fields§
§regs: [u128; 32]128-bit SIMD & FP registers (V0..V31)
fpcr: u32Floating-point Control Register (FPCR)
fpsr: u32Floating-point Status Register (FPSR)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FpState
impl RefUnwindSafe for FpState
impl Send for FpState
impl Sync for FpState
impl Unpin for FpState
impl UnsafeUnpin for FpState
impl UnwindSafe for FpState
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