#[repr(C)]pub struct sigaltstack {
pub ss_sp: *mut c_void,
pub ss_flags: c_int,
pub ss_size: size_t,
}Fields§
§ss_sp: *mut c_voidStack base or pointer.
ss_flags: c_intFlags,
ss_size: size_tStack size.
Trait Implementations§
Source§impl Clone for sigaltstack
impl Clone for sigaltstack
Source§fn clone(&self) -> sigaltstack
fn clone(&self) -> sigaltstack
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for sigaltstack
impl RefUnwindSafe for sigaltstack
impl !Send for sigaltstack
impl !Sync for sigaltstack
impl Unpin for sigaltstack
impl UnsafeUnpin for sigaltstack
impl UnwindSafe for sigaltstack
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