#[repr(C)]pub struct ucontext {
pub uc_flags: c_ulong,
pub uc_link: *mut ucontext,
pub uc_stack: stack_t,
pub uc_mcontext: sigcontext,
pub uc_sigmask: kernel_sigset_t,
}
Fields§
§uc_flags: c_ulong
§uc_link: *mut ucontext
§uc_stack: stack_t
§uc_mcontext: sigcontext
§uc_sigmask: kernel_sigset_t
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ucontext
impl RefUnwindSafe for ucontext
impl !Send for ucontext
impl !Sync for ucontext
impl Unpin for ucontext
impl UnwindSafe for ucontext
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