Trait ethcore_io::MayPanic [] [src]

pub trait MayPanic {
    fn on_panic<F>(&self, closure: F) where F: OnPanicListener;
}

Trait indicating that the structure catches some of the panics (most probably from spawned threads) and it's possbile to be notified when one of the threads panics.

Required Methods

closure will be invoked whenever panic in thread is caught

Implementors