recoverable_spawn

Type Alias ArcRecoverableFunction

Source
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 the RecoverableFunction trait.
  • Enables shared ownership and thread-safe usage of recoverable functions in concurrent environments.

Aliased Typeยง

struct ArcRecoverableFunction { /* private fields */ }