Enum actix_web::actix::fut::Either[][src]

pub enum Either<A, B> {
    A(A),
    B(B),
}
[]

Combines two different futures yielding the same item and error types into a single type.

Variants

[]

First branch of the type

[]

Second branch of the type

Methods

impl<T, A, B> Either<(T, A), (T, B)>
[src]
[]

[]

Splits out the homogeneous type from an either of tuples.

This method is typically useful when combined with the Future::select2 combinator.

Trait Implementations

impl<A, B> ActorFuture for Either<A, B> where
    A: ActorFuture,
    B: ActorFuture<Item = <A as ActorFuture>::Item, Error = <A as ActorFuture>::Error, Actor = <A as ActorFuture>::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<A, B> Debug for Either<A, B> where
    A: Debug,
    B: Debug
[src]
[+]

[]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<A, B> Send for Either<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for Either<A, B> where
    A: Sync,
    B: Sync