pub trait SignalHandlerAbiwhere
    Self: Debug,{
    // Required method
    fn signal(&self, signal: u8) -> Result<(), SignalDeliveryError>;
}
Expand description

Signal handles…well…they process signals

Required Methods§

source

fn signal(&self, signal: u8) -> Result<(), SignalDeliveryError>

Processes a signal

Implementors§