Enum asyncio::Signal [] [src]

#[repr(i32)]
pub enum Signal { SIGHUP, SIGINT, SIGQUIT, SIGILL, SIGABRT, SIGFPE, SIGKILL, SIGSEGV, SIGPIPE, SIGALRM, SIGTERM, SIGUSR1, SIGUSR2, SIGCHLD, SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGBUS, SIGPOLL, SIGPROF, SIGSYS, SIGTRAP, SIGURG, SIGVTALRM, SIGXCPU, SIGXFSZ, }

A list specifying POSIX categories of signal.

Variants

Hangup detected on controlling terminal or death of controlling process.

Interrupt from keyboard.

Quit from keyboard.

Illegal Instruction.

Abort signal from abort(3)

Floating point exception.

Kill signal.

Invalid memory reference.

Broken pipe: write to pipe with no readers.

Timer signal from alarm(2).

Termination signal.

User-defined signal 1.

User-defined signal 2.

Child stopped of terminated.

Continue if stopped.

Stop process.

Stop typed at terminal.

Terminal input for background process.

Terminal output for background process.

Bus error (bad memory access).

Pollable event (Sys V). Synonym for SIGIO.

Profiling timer expired.

Bad argument to routine (SVr4).

Trace/breakpoint trap.

Urgent condition on socket (4.2BSD).

Virtual alarm clock (4.2BSD).

CPU time limit exceeded (4.2BSD).

File size limit exceeded (4.2BSD).

Trait Implementations

impl Clone for Signal
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. 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 !=.

impl Debug for Signal
[src]

Formats the value using the given formatter.