Type Alias orchestrator::executor::ExecutorFuture
source · pub type ExecutorFuture<S> = Pin<Box<dyn Send + Sync + Future<Output = Result<S, Box<dyn StdError + Send + Sync + 'static>>>>>;Expand description
Type definition to simplify additional types: It is dynamic Future that return a state or an boxed error.
Aliased Type§
struct ExecutorFuture<S> {}