pub trait ActorFutureExt<A: Actor>: ActorFuture<A> {
    fn map<F, U>(self, f: F) -> Map<Self, F>
    where
        F: FnOnce(Self::Output, &mut A, &mut A::Context) -> U,
        Self: Sized
, { ... }
fn then<F, Fut>(self, f: F) -> Then<Self, Fut, F>
    where
        F: FnOnce(Self::Output, &mut A, &mut A::Context) -> Fut,
        Fut: ActorFuture<A>,
        Self: Sized
, { ... }
fn timeout(self, timeout: Duration) -> Timeout<Self>
    where
        Self: Sized
, { ... }
fn boxed_local(self) -> LocalBoxActorFuture<A, Self::Output>
    where
        Self: Sized + 'static
, { ... } }

Provided methods

Map this future’s result to a different type, returning a new future of the resulting type.

Chain on a computation for when a future finished, passing the result of the future to the provided closure f.

Add timeout to futures chain.

Err(()) returned as a timeout error.

Wrap the future in a Box, pinning it.

A shortcut for wrapping in Box::pin.

Implementors