#[repr(C)]pub struct SigAbi {
pub signal: u8,
pub handler: usize,
pub flags: u32,
pub mask: u64,
}Expand description
Shared-memory signal action descriptor used by the syscall ABI.
Fields§
§signal: u8§handler: usize§flags: u32§mask: u64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SigAbi
impl RefUnwindSafe for SigAbi
impl Send for SigAbi
impl Sync for SigAbi
impl Unpin for SigAbi
impl UnsafeUnpin for SigAbi
impl UnwindSafe for SigAbi
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