Enum nix::sys::signal::SigevNotify   
source · pub enum SigevNotify {
    SigevNone,
    SigevSignal {
        signal: Signal,
        si_value: intptr_t,
    },
}Expand description
Specifies the notification method used by a SigEvent
Variants§
SigevNone
No notification will be delivered
SigevSignal
Notify by delivering a signal to the process.
Fields
§
si_value: intptr_tWill be present in the si_value field of the libc::siginfo_t
structure of the queued signal.
Trait Implementations§
source§impl Clone for SigevNotify
 
impl Clone for SigevNotify
source§fn clone(&self) -> SigevNotify
 
fn clone(&self) -> SigevNotify
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 Debug for SigevNotify
 
impl Debug for SigevNotify
source§impl Hash for SigevNotify
 
impl Hash for SigevNotify
source§impl PartialEq for SigevNotify
 
impl PartialEq for SigevNotify
source§fn eq(&self, other: &SigevNotify) -> bool
 
fn eq(&self, other: &SigevNotify) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for SigevNotify
impl Eq for SigevNotify
impl StructuralPartialEq for SigevNotify
Auto Trait Implementations§
impl Freeze for SigevNotify
impl RefUnwindSafe for SigevNotify
impl Send for SigevNotify
impl Sync for SigevNotify
impl Unpin for SigevNotify
impl UnwindSafe for SigevNotify
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