Struct _libc_fpxreg

#[repr(C)]
pub struct _libc_fpxreg { pub significand: [u16; 4], pub exponent: u16, /* private fields */ }

Fields

significand: [u16; 4]
exponent: u16

Trait Implementations

impl Clone for _libc_fpxreg

fn clone(&self) -> _libc_fpxreg

impl Copy for _libc_fpxreg

impl Debug for _libc_fpxreg

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for _libc_fpxreg

impl Hash for _libc_fpxreg

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for _libc_fpxreg

fn eq(&self, other: &_libc_fpxreg) -> bool

impl StructuralPartialEq for _libc_fpxreg

Auto Trait Implementations

impl Freeze for _libc_fpxreg

impl RefUnwindSafe for _libc_fpxreg

impl Send for _libc_fpxreg

impl Sync for _libc_fpxreg

impl Unpin for _libc_fpxreg

impl UnsafeUnpin for _libc_fpxreg

impl UnwindSafe for _libc_fpxreg

Blanket Implementations

impl<T> Any for _libc_fpxreg where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for _libc_fpxreg where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for _libc_fpxreg where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for _libc_fpxreg where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for _libc_fpxreg

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for _libc_fpxreg where U: From<T>,

fn into(self) -> U

Calls U::from(self).

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

impl<T, U> TryFrom<U> for _libc_fpxreg where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for _libc_fpxreg where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>