#[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 more