#[repr(C)]pub struct SigAction {
pub sa_handler: Option<extern "C" fn(_: usize)>,
pub sa_mask: [u64; 2],
pub sa_flags: SigActionFlags,
}
Fields
sa_handler: Option<extern "C" fn(_: usize)>
sa_mask: [u64; 2]
sa_flags: SigActionFlags
Trait Implementations
impl Copy for SigAction
impl StructuralPartialEq for SigAction
Auto Trait Implementations
impl RefUnwindSafe for SigAction
impl Send for SigAction
impl Sync for SigAction
impl Unpin for SigAction
impl UnwindSafe for SigAction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more