pub trait ErrorHandler:
Send
+ Sync
+ UnwindSafe
+ RefUnwindSafe
+ 'static {
// Required method
fn run(&self, _: Error) -> ErrorReaction;
}
Required Methods§
Sourcefn run(&self, _: Error) -> ErrorReaction
fn run(&self, _: Error) -> ErrorReaction
Handles an error.
The handler is given ownership of the error so that the handler can easily store the error somewhere if desired.