#[repr(C)]
pub union __sigaction_u {
pub __sa_handler: Option<unsafe extern "C" fn(arg1: c_int)>,
pub __sa_sigaction: Option<unsafe extern "C" fn(arg1: c_int, arg2: *mut __siginfo, arg3: *mut c_void)>,
}
Fields§
§__sa_handler: Option<unsafe extern "C" fn(arg1: c_int)>
§__sa_sigaction: Option<unsafe extern "C" fn(arg1: c_int, arg2: *mut __siginfo, arg3: *mut c_void)>
Trait Implementations§
Source§impl Clone for __sigaction_u
impl Clone for __sigaction_u
Source§fn clone(&self) -> __sigaction_u
fn clone(&self) -> __sigaction_u
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for __sigaction_u
impl Default for __sigaction_u
impl Copy for __sigaction_u
Auto Trait Implementations§
impl Freeze for __sigaction_u
impl RefUnwindSafe for __sigaction_u
impl Send for __sigaction_u
impl Sync for __sigaction_u
impl Unpin for __sigaction_u
impl UnwindSafe for __sigaction_u
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