Trait FullExecutor
executor_trait
pub trait FullExecutor: Executor + BlockingExecutor { }
A common interface for spawning futures and blocking tasks on top of an executor
impl<E: Deref + Sync> FullExecutor for E where E::Target: FullExecutor + Sync,