#[repr(C)]#[repr(align(8))]pub struct ucontext {
pub uc_flags: c_ulong,
pub uc_link: *mut ucontext,
pub uc_stack: stack_t,
pub uc_mcontext: mcontext_t,
pub __bindgen_anon_1: ucontext__bindgen_ty_1,
pub __padding: [c_char; 120],
pub uc_regspace: [c_ulong; 128],
}
Fields
uc_flags: c_ulong
uc_link: *mut ucontext
uc_stack: stack_t
uc_mcontext: mcontext_t
__bindgen_anon_1: ucontext__bindgen_ty_1
__padding: [c_char; 120]
uc_regspace: [c_ulong; 128]
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ucontext
impl !Send for ucontext
impl !Sync for ucontext
impl Unpin for ucontext
impl UnwindSafe for ucontext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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