Enum futures::future::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

A(A)

First branch of the type

B(B)

Second branch of the type

Implementations

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

pub fn split(self) -> (T, Either<A, 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: Debug, B: Debug> Debug for Either<A, B>[src]

impl<A, B> Future for Either<A, B> where
    A: Future,
    B: Future<Item = A::Item, Error = A::Error>, 
[src]

type Item = A::Item

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

type Error = A::Error

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

impl<A, B> Stream for Either<A, B> where
    A: Stream,
    B: Stream<Item = A::Item, Error = A::Error>, 
[src]

type Item = A::Item

The type of item this stream will yield on success.

type Error = A::Error

The type of error this stream may generate.

Auto Trait Implementations

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

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

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

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

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<F> IntoFuture for F where
    F: Future
[src]

type Future = F

The future that this type can be converted into.

type Item = <F as Future>::Item

The item that the future may resolve with.

type Error = <F as Future>::Error

The error that the future may resolve with.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.