Trait actix_web::actix::fut::IntoActorFuture [−][src]
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
type Future: ActorFuture
[−]
The future that this type can be converted into.
type Item
[−]
The item that the future may resolve with.
type Error
[−]
The error that the future may resolve with.
type Actor: Actor
[−]
The actor within which this future runs
Required Methods
fn into_future(self) -> Self::Future
[−]
Consumes this object and produces a future.
Implementors
impl<F> IntoActorFuture for F where
F: ActorFuture, type Future = F; type Item = <F as ActorFuture>::Item; type Error = <F as ActorFuture>::Error; type Actor = <F as ActorFuture>::Actor;