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