pub trait ErrorHandlerFunction:
FnOnce(&str)
+ Send
+ Sync
+ 'static { }Expand description
Trait alias for error-handling functions used in a recoverable context.
§Arguments
&str- The error message to handle.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".