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