Struct crash_context::fpregset_t
source · [−]#[repr(C)]pub struct fpregset_t {
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_space: [u32; 32],
pub xmm_space: [u32; 64],
/* private fields */
}
Fields
cwd: u16
swd: u16
ftw: u16
fop: u16
rip: u64
rdp: u64
mxcsr: u32
mxcr_mask: u32
st_space: [u32; 32]
xmm_space: [u32; 64]
Trait Implementations
sourceimpl Clone for fpregset_t
impl Clone for fpregset_t
sourcefn clone(&self) -> fpregset_t
fn clone(&self) -> fpregset_t
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for fpregset_t
impl Send for fpregset_t
impl Sync for fpregset_t
impl Unpin for fpregset_t
impl UnwindSafe for fpregset_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more