[][src]Struct actix_web::dev::Drain

pub struct Drain<A> { /* fields omitted */ }

Consume a future

Methods

impl<A> Drain<A>
[src]

Create a drain from a future

Trait Implementations

impl<A: Actor> ActorFuture for Drain<A>
[src]

The type of value that this future will resolved with if it is successful. Read more

The type of error that this future will resolve with if it fails in a normal fashion. Read more

The actor within which this future runs

Map this future's result to a different type, returning a new future of the resulting type. Read more

Map this future's error to a different error, returning a new future.

Drop this future's error, returning a new future.

Map this future's error to any error implementing From for this future's Error, returning a new future. Read more

Chain on a computation for when a future finished, passing the result of the future to the provided closure f. Read more

Execute another future after this one has resolved successfully.

Add timeout to futures chain. Read more

Auto Trait Implementations

impl<A> Send for Drain<A> where
    A: Send

impl<A> Sync for Drain<A> where
    A: Sync

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Erased for T

impl<A, T> ContextFutureSpawner for T where
    A: Actor,
    T: ActorFuture<Item = (), Error = (), Actor = A> + 'static,
    <A as Actor>::Context: AsyncContext<A>, 

spawn future into Context<A>

Spawn future into the context. Stop processing any of incoming events until this future resolves. Read more

impl<F> IntoActorFuture for F where
    F: ActorFuture

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

Consumes this object and produces a future.