#[repr(C)]
pub struct __darwin_x86_float_state64 {
Show 37 fields pub __fpu_reserved: [c_int; 2], pub __fpu_ftw: u8, pub __fpu_rsrv1: u8, pub __fpu_fop: u16, pub __fpu_ip: u32, pub __fpu_cs: u16, pub __fpu_rsrv2: u16, pub __fpu_dp: u32, pub __fpu_ds: u16, pub __fpu_rsrv3: u16, pub __fpu_mxcsr: u32, pub __fpu_mxcsrmask: u32, pub __fpu_stmm0: __darwin_mmst_reg, pub __fpu_stmm1: __darwin_mmst_reg, pub __fpu_stmm2: __darwin_mmst_reg, pub __fpu_stmm3: __darwin_mmst_reg, pub __fpu_stmm4: __darwin_mmst_reg, pub __fpu_stmm5: __darwin_mmst_reg, pub __fpu_stmm6: __darwin_mmst_reg, pub __fpu_stmm7: __darwin_mmst_reg, pub __fpu_xmm0: __darwin_xmm_reg, pub __fpu_xmm1: __darwin_xmm_reg, pub __fpu_xmm2: __darwin_xmm_reg, pub __fpu_xmm3: __darwin_xmm_reg, pub __fpu_xmm4: __darwin_xmm_reg, pub __fpu_xmm5: __darwin_xmm_reg, pub __fpu_xmm6: __darwin_xmm_reg, pub __fpu_xmm7: __darwin_xmm_reg, pub __fpu_xmm8: __darwin_xmm_reg, pub __fpu_xmm9: __darwin_xmm_reg, pub __fpu_xmm10: __darwin_xmm_reg, pub __fpu_xmm11: __darwin_xmm_reg, pub __fpu_xmm12: __darwin_xmm_reg, pub __fpu_xmm13: __darwin_xmm_reg, pub __fpu_xmm14: __darwin_xmm_reg, pub __fpu_xmm15: __darwin_xmm_reg, pub __fpu_reserved1: c_int, /* private fields */
}

Fields§

§__fpu_reserved: [c_int; 2]§__fpu_ftw: u8§__fpu_rsrv1: u8§__fpu_fop: u16§__fpu_ip: u32§__fpu_cs: u16§__fpu_rsrv2: u16§__fpu_dp: u32§__fpu_ds: u16§__fpu_rsrv3: u16§__fpu_mxcsr: u32§__fpu_mxcsrmask: u32§__fpu_stmm0: __darwin_mmst_reg§__fpu_stmm1: __darwin_mmst_reg§__fpu_stmm2: __darwin_mmst_reg§__fpu_stmm3: __darwin_mmst_reg§__fpu_stmm4: __darwin_mmst_reg§__fpu_stmm5: __darwin_mmst_reg§__fpu_stmm6: __darwin_mmst_reg§__fpu_stmm7: __darwin_mmst_reg§__fpu_xmm0: __darwin_xmm_reg§__fpu_xmm1: __darwin_xmm_reg§__fpu_xmm2: __darwin_xmm_reg§__fpu_xmm3: __darwin_xmm_reg§__fpu_xmm4: __darwin_xmm_reg§__fpu_xmm5: __darwin_xmm_reg§__fpu_xmm6: __darwin_xmm_reg§__fpu_xmm7: __darwin_xmm_reg§__fpu_xmm8: __darwin_xmm_reg§__fpu_xmm9: __darwin_xmm_reg§__fpu_xmm10: __darwin_xmm_reg§__fpu_xmm11: __darwin_xmm_reg§__fpu_xmm12: __darwin_xmm_reg§__fpu_xmm13: __darwin_xmm_reg§__fpu_xmm14: __darwin_xmm_reg§__fpu_xmm15: __darwin_xmm_reg§__fpu_reserved1: c_int

Trait Implementations§

source§

impl Clone for __darwin_x86_float_state64

source§

fn clone(&self) -> __darwin_x86_float_state64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for __darwin_x86_float_state64

source§

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

Formats the value using the given formatter. Read more
source§

impl Hash for __darwin_x86_float_state64

source§

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

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<__darwin_x86_float_state64> for __darwin_x86_float_state64

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for __darwin_x86_float_state64

source§

impl Eq for __darwin_x86_float_state64

source§

impl StructuralEq for __darwin_x86_float_state64

source§

impl StructuralPartialEq for __darwin_x86_float_state64

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.