#[repr(C)]pub struct sigaction {
pub sa_sigaction: usize,
pub sa_mask: sigset_t,
pub sa_flags: i32,
pub sa_restorer: Option<extern "C" fn()>,
}
Fields§
§sa_sigaction: usize
§sa_mask: sigset_t
§sa_flags: i32
§sa_restorer: Option<extern "C" fn()>
Trait Implementations§
source§impl PartialEq<sigaction> for sigaction
impl PartialEq<sigaction> for sigaction
impl Copy for sigaction
impl Eq for sigaction
impl StructuralEq 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§
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
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.