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

Helper trait that allows conversion of normal future into ActorFuture

Associated Types

The future that this type can be converted into.

Required methods

Convert normal future to a ActorFuture

Implementors