Enum marid::Signal [] [src]

pub enum Signal {
    HUP,
    INT,
    QUIT,
    ILL,
    ABRT,
    FPE,
    KILL,
    SEGV,
    PIPE,
    ALRM,
    TERM,
    // some variants omitted
}

The set of subscribable signals.

After the first call to notify_on (or notify), precisely this set of signals are set to blocked status.

Variants

HUP
INT
QUIT
ILL
ABRT
FPE
KILL
SEGV
PIPE
ALRM
TERM

Trait Implementations

Derived Implementations

impl PartialEq<Signal> for Signal

fn eq(&self, __arg_0: &Signal) -> bool

fn ne(&self, __arg_0: &Signal) -> bool

impl Eq for Signal

impl Debug for Signal

fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>

impl Copy for Signal

impl Clone for Signal

fn clone(&self) -> Signal

fn clone_from(&mut self, source: &Self)