pub type ArcErrorHandlerFunction<O> = Arc<dyn ErrorHandlerFunction<Future = O>>;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<O> { /* private fields */ }