Trait async_nursery::LocalNurse[][src]

pub trait LocalNurse<Out: 'static> {
    fn nurse_local_obj(
        &self,
        fut: LocalFutureObj<'static, Out>
    ) -> Result<(), NurseErr>; }
Expand description

Same as Nurse but doesn’t require the futures to be Send.

Required methods

Spawn a !Send future and store it’s JoinHandle.

Implementations on Foreign Types

Implementors