pub type ArcAsyncRecoverableFunction<O, F> = Arc<dyn AsyncRecoverableFunction<Output = O, Future = F>>;
Expand description
Alias for an Arc
-wrapped recoverable function.
- This type represents an
Arc
-wrapped version of any function implementing theAsyncRecoverableFunction
trait. - Enables shared ownership and thread-safe usage of recoverable functions in concurrent environments.
Aliased Typeยง
struct ArcAsyncRecoverableFunction<O, F> { /* private fields */ }