Struct actix::fut::FutureResult[][src]

#[must_use = "futures do nothing unless polled"]
pub struct FutureResult<T, E, A> { /* fields omitted */ }
[]

A future representing a value that is immediately ready.

Created by the result function.

Trait Implementations

impl<T: Debug, E: Debug, A: Debug> Debug for FutureResult<T, E, A>
[src]
[+]

[]

Formats the value using the given formatter. Read more

impl<T, E, A> ActorFuture for FutureResult<T, E, A> where
    A: Actor
[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

impl<T, E, A> From<Result<T, E>> for FutureResult<T, E, A>
[src]
[+]

[]

Performs the conversion.

Auto Trait Implementations

impl<T, E, A> Send for FutureResult<T, E, A> where
    A: Send,
    E: Send,
    T: Send

impl<T, E, A> Sync for FutureResult<T, E, A> where
    A: Sync,
    E: Sync,
    T: Sync