Trait FullExecutor

Source
pub trait FullExecutor: Executor + BlockingExecutor { }
Expand description

A common interface for spawning futures and blocking tasks on top of an executor

Implementors§

Source§

impl<E: Deref + Sync> FullExecutor for E
where E::Target: FullExecutor + Sync,