#[repr(C)]pub struct __darwin_ucontext {
pub uc_onstack: c_int,
pub uc_sigmask: sigset_t,
pub uc_stack: stack_t,
pub uc_link: *mut ucontext_t,
pub uc_mcsize: usize,
pub uc_mcontext: mcontext_t,
}Fields§
§uc_onstack: c_int§uc_sigmask: sigset_t§uc_stack: stack_t§uc_link: *mut ucontext_t§uc_mcsize: usize§uc_mcontext: mcontext_tTrait Implementations§
Source§impl Clone for __darwin_ucontext
impl Clone for __darwin_ucontext
Source§fn clone(&self) -> __darwin_ucontext
fn clone(&self) -> __darwin_ucontext
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for __darwin_ucontext
impl Debug for __darwin_ucontext
impl Copy for __darwin_ucontext
Auto Trait Implementations§
impl Freeze for __darwin_ucontext
impl RefUnwindSafe for __darwin_ucontext
impl !Send for __darwin_ucontext
impl !Sync for __darwin_ucontext
impl Unpin for __darwin_ucontext
impl UnwindSafe for __darwin_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