Trait actix_web::actix::fut::IntoActorFuture[][src]

pub trait IntoActorFuture where
    <Self::Future as ActorFuture>::Item == Self::Item,
    <Self::Future as ActorFuture>::Error == Self::Error,
    <Self::Future as ActorFuture>::Actor == Self::Actor
{ type Future: ActorFuture; type Item; type Error; type Actor: Actor; fn into_future(self) -> Self::Future; }
[]

Class of types which can be converted into an actor future.

This trait is very similar to the IntoIterator trait and is intended to be used in a very similar fashion.

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.

[]

The actor within which this future runs

Required Methods

[]

Consumes this object and produces a future.

Implementors