pub trait SpawnDefaultExt: Future {
    fn spawn(self) -> Spawner<'static, Self, Sender<((), TaskType)>, (), ()> 
    where
        Self: Sized + Send + 'static,
        Self::Output: Send + 'static
, { ... } }

Provided Methods§

Implementors§