pub trait WrapFuture<A>where
    A: Actor,
{ type Future: ActorFuture<Item = Self::Item, Error = Self::Error, Actor = A>; type Item; type Error; fn into_actor(self, a: &A) -> Self::Future; }
Expand description

Helper trait that allows conversion of normal future into ActorFuture

Required Associated Types

The future that this type can be converted into.

The item that the future may resolve with.

The error that the future may resolve with.

Required Methods

Convert normal future to a ActorFuture

Implementors