[][src]Enum heim::process::os::unix::Signal

pub enum Signal {
    Abrt,
    Alrm,
    Bus,
    Chld,
    Cont,
    Fpe,
    Hup,
    Ill,
    Int,
    Kill,
    Pipe,
    Quit,
    Segv,
    Stop,
    Term,
    Tstp,
    Ttin,
    Ttou,
    Usr1,
    Usr2,
    Prof,
    Sys,
    Trap,
    Urg,
    VtAlrm,
    XCpu,
    XFsz,
}
This is supported on feature="process" only.

POSIX signals.

Signals list is based on the POSIX.1-2017 specification.

Variants

Abrt
This is supported on feature="process" only.

Process abort signal.

Alrm
This is supported on feature="process" only.

Alarm clock.

Bus
This is supported on feature="process" only.

Access to an undefined portion of a memory object.

Chld
This is supported on feature="process" only.

Child process terminated, stopped, or continued.

Cont
This is supported on feature="process" only.

Continue executing, if stopped.

Fpe
This is supported on feature="process" only.

Erroneous arithmetic operation.

Hup
This is supported on feature="process" only.

Hangup.

Ill
This is supported on feature="process" only.

Illegal instruction.

Int
This is supported on feature="process" only.

Terminal interrupt signal.

Kill
This is supported on feature="process" only.

Kill (cannot be caught or ignored).

Pipe
This is supported on feature="process" only.

Write on a pipe with no one to read it.

Quit
This is supported on feature="process" only.

Terminal quit signal.

Segv
This is supported on feature="process" only.

Invalid memory reference.

Stop
This is supported on feature="process" only.

Stop executing (cannot be caught or ignored).

Term
This is supported on feature="process" only.

Termination signal.

Tstp
This is supported on feature="process" only.

Terminal stop signal.

Ttin
This is supported on feature="process" only.

Background process attempting read.

Ttou
This is supported on feature="process" only.

Background process attempting write.

Usr1
This is supported on feature="process" only.

User-defined signal 1.

Usr2
This is supported on feature="process" only.

User-defined signal 2.

Prof
This is supported on feature="process" only.

Profiling timer expired.

Sys
This is supported on feature="process" only.

Bad system call.

Trap
This is supported on feature="process" only.

Trace/breakpoint trap.

Urg
This is supported on feature="process" only.

High bandwidth data is available at a socket.

VtAlrm
This is supported on feature="process" only.

Virtual timer expired.

XCpu
This is supported on feature="process" only.

CPU time limit exceeded.

XFsz
This is supported on feature="process" only.

File size limit exceeded.

Trait Implementations

impl Clone for Signal[src]

impl Copy for Signal[src]

impl Debug for Signal[src]

impl Eq for Signal[src]

impl PartialEq<Signal> for Signal[src]

impl StructuralEq for Signal[src]

impl StructuralPartialEq for Signal[src]

impl TryFrom<i32> for Signal[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Signal

impl Send for Signal

impl Sync for Signal

impl Unpin for Signal

impl UnwindSafe for Signal

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.