pub type ArcRecoverableFunction = Arc<dyn RecoverableFunction>;Expand description
Alias for an Arc-wrapped recoverable function.
- This type represents an
Arc-wrapped version of any function implementing theRecoverableFunctiontrait. - Enables shared ownership and thread-safe usage of recoverable functions in concurrent environments.
Aliased Typeยง
struct ArcRecoverableFunction { /* private fields */ }