Type Alias ArcAsyncRecoverableFunction

Source
pub type ArcAsyncRecoverableFunction<O, F> = Arc<dyn AsyncRecoverableFunction<Future = F, Output = O>>;
Expand description

Arc-wrapped asynchronous recoverable function.

§Type Parameters

  • O - The output type.
  • F - The future type.

Aliased Type§

pub struct ArcAsyncRecoverableFunction<O, F> { /* private fields */ }