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

pub trait IntoActorFuture {
    type Future: ActorFuture<Output = Self::Output, Actor = Self::Actor>;
    type Output;
    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

type Future: ActorFuture<Output = Self::Output, Actor = Self::Actor>

The future that this type can be converted into.

type Output

The item that the future may resolve with.

type Actor: Actor

The actor within which this future runs

Loading content...

Required methods

fn into_future(self) -> Self::Future

Consumes this object and produces a future.

Loading content...

Implementors

impl<F: ActorFuture> IntoActorFuture for F[src]

type Future = F

type Output = F::Output

type Actor = F::Actor

Loading content...