[][src]Trait actix_web::actix::WrapFuture

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

Helper trait that allows conversion of normal future into ActorFuture

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.

Loading content...

Required methods

fn into_actor(self, a: &A) -> Self::Future

Convert normal future to a ActorFuture

Loading content...

Implementors

impl<F, A> WrapFuture<A> for F where
    A: Actor,
    F: Future
[src]

type Future = FutureWrap<F, A>

type Item = <F as Future>::Item

type Error = <F as Future>::Error

Loading content...