#[repr(C, align(16))]pub struct mcontext_t {Show 38 fields
pub mc_onstack: register_t,
pub mc_rdi: register_t,
pub mc_rsi: register_t,
pub mc_rdx: register_t,
pub mc_rcx: register_t,
pub mc_r8: register_t,
pub mc_r9: register_t,
pub mc_rax: register_t,
pub mc_rbx: register_t,
pub mc_rbp: register_t,
pub mc_r10: register_t,
pub mc_r11: register_t,
pub mc_r12: register_t,
pub mc_r13: register_t,
pub mc_r14: register_t,
pub mc_r15: register_t,
pub mc_trapno: u32,
pub mc_fs: u16,
pub mc_gs: u16,
pub mc_addr: register_t,
pub mc_flags: u32,
pub mc_es: u16,
pub mc_ds: u16,
pub mc_err: register_t,
pub mc_rip: register_t,
pub mc_cs: register_t,
pub mc_rflags: register_t,
pub mc_rsp: register_t,
pub mc_ss: register_t,
pub mc_len: c_long,
pub mc_fpformat: c_long,
pub mc_ownedfp: c_long,
pub mc_fpstate: [c_long; 64],
pub mc_fsbase: register_t,
pub mc_gsbase: register_t,
pub mc_xfpustate: register_t,
pub mc_xfpustate_len: register_t,
pub mc_spare: [c_long; 4],
}Fields§
§mc_onstack: register_t§mc_rdi: register_t§mc_rsi: register_t§mc_rdx: register_t§mc_rcx: register_t§mc_r8: register_t§mc_r9: register_t§mc_rax: register_t§mc_rbx: register_t§mc_rbp: register_t§mc_r10: register_t§mc_r11: register_t§mc_r12: register_t§mc_r13: register_t§mc_r14: register_t§mc_r15: register_t§mc_trapno: u32§mc_fs: u16§mc_gs: u16§mc_addr: register_t§mc_flags: u32§mc_es: u16§mc_ds: u16§mc_err: register_t§mc_rip: register_t§mc_cs: register_t§mc_rflags: register_t§mc_rsp: register_t§mc_ss: register_t§mc_len: c_long§mc_fpformat: c_long§mc_ownedfp: c_long§mc_fpstate: [c_long; 64]§mc_fsbase: register_t§mc_gsbase: register_t§mc_xfpustate: register_t§mc_xfpustate_len: register_t§mc_spare: [c_long; 4]Trait Implementations§
Source§impl Clone for mcontext_t
impl Clone for mcontext_t
Source§fn clone(&self) -> mcontext_t
fn clone(&self) -> mcontext_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for mcontext_t
impl Debug for mcontext_t
impl Copy for mcontext_t
Auto Trait Implementations§
impl Freeze for mcontext_t
impl RefUnwindSafe for mcontext_t
impl Send for mcontext_t
impl Sync for mcontext_t
impl Unpin for mcontext_t
impl UnwindSafe for mcontext_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more