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)), }
A signal handler.
Variants
Default signal handling.
Request that the signal be ignored.
Use the given signal-catching function, which takes in the signal.
Use the given signal-catching function, which takes in the signal, information about how
the signal was generated, and a pointer to the threads ucontext_t
.
Trait Implementations
impl Clone for SigHandler
[src]
impl Clone for SigHandler
[src]fn clone(&self) -> SigHandler
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Hash for SigHandler
[src]
impl Hash for SigHandler
[src]impl PartialEq<SigHandler> for SigHandler
[src]
impl PartialEq<SigHandler> for SigHandler
[src]