Struct libc::ucontext_t
#[repr(C)]
pub struct ucontext_t {
pub uc_flags: ::c_ulong,
pub uc_link: *mut ucontext_t,
pub uc_stack: ::stack_t,
pub uc_mcontext: mcontext_t,
pub uc_sigmask: ::sigset_t,
/* some fields hidden */
}Fields
pub uc_flags: ::c_ulongpub uc_link: *mut ucontext_tpub uc_stack: ::stack_tpub uc_mcontext: mcontext_tpub uc_sigmask: ::sigset_tTrait Implementations
impl Clone for ucontext_t
fn clone(&Self) -> ucontext_timpl Copy for ucontext_timpl Debug for ucontext_t
fn fmt(&Self, f: &mut ::fmt::Formatter<'_>) -> ::fmt::Resultimpl Eq for ucontext_timpl Hash for ucontext_t
fn hash<H: ::hash::Hasher>(&Self, state: &mut H)impl PartialEq<ucontext_t> for ucontext_t
fn eq(&Self, other: &ucontext_t) -> boolAuto Trait Implementations
impl !Send for ucontext_timpl !Sync for ucontext_timpl RefUnwindSafe for ucontext_timpl Unpin for ucontext_timpl UnwindSafe for ucontext_tBlanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T