Struct libc::user_fpxregs_struct[][src]

#[repr(C)]
pub struct user_fpxregs_struct { pub cwd: c_ushort, pub swd: c_ushort, pub twd: c_ushort, pub fop: c_ushort, pub fip: c_long, pub fcs: c_long, pub foo: c_long, pub fos: c_long, pub mxcsr: c_long, pub st_space: [c_long; 32], pub xmm_space: [c_long; 32], // some fields omitted }

Fields

cwd: c_ushortswd: c_ushorttwd: c_ushortfop: c_ushortfip: c_longfcs: c_longfoo: c_longfos: c_longmxcsr: c_longst_space: [c_long; 32]xmm_space: [c_long; 32]

Trait Implementations

impl Clone for user_fpxregs_struct[src]

fn clone(&self) -> user_fpxregs_struct[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for user_fpxregs_struct[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.