Enum nix::sys::signal::SigHandler [] [src]

pub enum SigHandler {
    SigDfl,
    SigIgn,
    Handler(extern "C" fn(_: c_int)),
    SigAction(extern "C" fn(_: c_int, _: *mut siginfo_t, _: *mut c_void)),
}

Variants

Trait Implementations

impl Debug for SigHandler
[src]

Formats the value using the given formatter.

impl Clone for SigHandler
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SigHandler
[src]

impl PartialEq for SigHandler
[src]

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

This method tests for !=.