pub struct ucontext {
pub uc_link: *mut ucontext,
pub uc_stack: stack_t,
pub uc_sigmask: sigset_t,
pub uc_mcontext: mcontext,
/* private fields */
}Fields§
§uc_link: *mut ucontextPointer to the context that is resumed when this context returns.
uc_stack: stack_tThe stack used by this context.
uc_sigmask: sigset_tThe set of signals that are blocked when this context is active.
uc_mcontext: mcontextA machine-specific representation of the saved context.
Auto Trait Implementations§
impl Freeze for ucontext
impl RefUnwindSafe for ucontext
impl !Send for ucontext
impl !Sync for ucontext
impl Unpin for ucontext
impl UnsafeUnpin 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