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_ulong
pub uc_link: *mut ucontext_t
pub uc_stack: ::stack_t
pub uc_mcontext: mcontext_t
pub uc_sigmask: ::sigset_t
Trait Implementations
impl Clone for ucontext_t
fn clone(&Self) -> ucontext_t
impl Copy for ucontext_t
impl Debug for ucontext_t
fn fmt(&Self, f: &mut ::fmt::Formatter<'_>) -> ::fmt::Result
impl Eq for ucontext_t
impl 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) -> bool
Auto Trait Implementations
impl !Send for ucontext_t
impl !Sync for ucontext_t
impl RefUnwindSafe for ucontext_t
impl Unpin for ucontext_t
impl UnwindSafe for ucontext_t
Blanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T