Type Alias ucontext_t

Source
pub type ucontext_t = __darwin_ucontext;

Aliased Type§

struct ucontext_t {
    pub uc_onstack: i32,
    pub uc_sigmask: u32,
    pub uc_stack: __darwin_sigaltstack,
    pub uc_link: *mut __darwin_ucontext,
    pub uc_mcsize: u32,
    pub uc_mcontext: *mut __darwin_mcontext64,
}

Fields§

§uc_onstack: i32§uc_sigmask: u32§uc_stack: __darwin_sigaltstack§uc_link: *mut __darwin_ucontext§uc_mcsize: u32§uc_mcontext: *mut __darwin_mcontext64

Trait Implementations

Source§

impl Clone for __darwin_ucontext

Source§

fn clone(&self) -> __darwin_ucontext

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for __darwin_ucontext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for __darwin_ucontext

Source§

fn eq(&self, other: &__darwin_ucontext) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for __darwin_ucontext

Source§

impl Eq for __darwin_ucontext

Source§

impl StructuralPartialEq for __darwin_ucontext