Enum thrussh::Sig [] [src]

pub enum Sig<'a> {
    ABRT,
    ALRM,
    FPE,
    HUP,
    ILL,
    INT,
    KILL,
    PIPE,
    QUIT,
    SEGV,
    TERM,
    USR1,
    Custom(&'a str),
}

The type of signals that can be sent to a remote process. If you plan to use custom signals, read the RFC to understand the encoding.

Variants

Trait Implementations

impl<'a> Debug for Sig<'a>
[src]

Formats the value using the given formatter.

impl<'a> Clone for Sig<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Copy for Sig<'a>
[src]