pub type ArcErrorHandlerFunction = Arc<dyn ErrorHandlerFunction>;
Expand description
Alias for an Arc
-wrapped error handler function.
- This type represents an
Arc
-wrapped version of any function implementing theErrorHandlerFunction
trait. - Allows shared ownership and thread-safe handling of errors with custom logic across multiple threads.
Aliased Typeยง
pub struct ArcErrorHandlerFunction { /* private fields */ }