Struct _libc_fpstate
#[repr(C)]
pub struct _libc_fpstate { pub cwd: u16, pub swd: u16, pub ftw: u16, pub fop: u16, pub rip: u64, pub rdp: u64, pub mxcsr: u32, pub mxcr_mask: u32, pub _st: [_libc_fpxreg; 8], pub _xmm: [_libc_xmmreg; 16], /* private fields */ }
Fields
cwd: u16swd: u16ftw: u16fop: u16rip: u64rdp: u64mxcsr: u32mxcr_mask: u32_st: [_libc_fpxreg; 8]_xmm: [_libc_xmmreg; 16]
Trait Implementations
impl Clone for _libc_fpstate
fn clone(&self) -> _libc_fpstate
impl Copy for _libc_fpstate
impl Debug for _libc_fpstate
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for _libc_fpstate
impl Hash for _libc_fpstate
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for _libc_fpstate
fn eq(&self, other: &_libc_fpstate) -> bool
impl StructuralPartialEq for _libc_fpstate
Auto Trait Implementations
impl Freeze for _libc_fpstate
impl RefUnwindSafe for _libc_fpstate
impl Send for _libc_fpstate
impl Sync for _libc_fpstate
impl Unpin for _libc_fpstate
impl UnsafeUnpin for _libc_fpstate
impl UnwindSafe for _libc_fpstate
Blanket Implementations
impl<T> Any for _libc_fpstate
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for _libc_fpstate
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for _libc_fpstate
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for _libc_fpstate
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for _libc_fpstate
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for _libc_fpstate
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for _libc_fpstate
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for _libc_fpstate
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>