[][src]Type Definition actori::ResponseActFuture

type ResponseActFuture<A, I> = Box<dyn ActorFuture<Output = I, Actor = A>>;

A specialized actor future for asynchronous message handling.

Trait Implementations

impl<A, M, I: 'static, E: 'static> MessageResponse<A, M> for ResponseActFuture<A, Result<I, E>> where
    A: Actor,
    M: Message<Result = Result<I, E>>,
    A::Context: AsyncContext<A>, 
[src]