Enum chan_signal::Signal[][src]

pub enum Signal {
    HUP,
    INT,
    QUIT,
    ILL,
    ABRT,
    FPE,
    KILL,
    SEGV,
    PIPE,
    ALRM,
    TERM,
    USR1,
    USR2,
    CHLD,
    CONT,
    STOP,
    TSTP,
    TTIN,
    TTOU,
    BUS,
    PROF,
    SYS,
    TRAP,
    URG,
    VTALRM,
    XCPU,
    XFSZ,
    IO,
    WINCH,
    // 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

Trait Implementations

impl Clone for Signal
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Signal
[src]

impl Debug for Signal
[src]

Formats the value using the given formatter. Read more

impl Eq for Signal
[src]

impl PartialEq for Signal
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Signal

impl Sync for Signal