Enum ntex_util::future::Either[][src]

pub enum Either<A, B> {
    Left(A),
    Right(B),
}

Combines two different futures, streams, or sinks having the same associated types into a single type.

Variants

Left(A)

First branch of the type

Right(B)

Second branch of the type

Implementations

impl<A, B> Either<A, B>[src]

pub fn is_left(&self) -> bool[src]

Return true if the value is the Left variant.

pub fn is_right(&self) -> bool[src]

Return true if the value is the Right variant.

pub fn left(self) -> Option<A>[src]

Convert the left side of Either<L, R> to an Option<L>.

pub fn right(self) -> Option<B>[src]

Convert the right side of Either<L, R> to an Option<R>.

pub fn as_ref(&self) -> Either<&A, &B>

Notable traits for Either<A, B>

impl<A, B> Future for Either<A, B> where
    A: Future,
    B: Future<Output = A::Output>, 
type Output = A::Output;
[src]

Convert &Either<L, R> to Either<&L, &R>.

pub fn as_mut(&mut self) -> Either<&mut A, &mut B>

Notable traits for Either<A, B>

impl<A, B> Future for Either<A, B> where
    A: Future,
    B: Future<Output = A::Output>, 
type Output = A::Output;
[src]

Convert &mut Either<L, R> to Either<&mut L, &mut R>.

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

pub fn factor_first(self) -> (T, Either<A, B>)[src]

Factor out a homogeneous type from an either of pairs.

Here, the homogeneous type is the first element of the pairs.

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

pub fn factor_second(self) -> (Either<A, B>, T)[src]

Factor out a homogeneous type from an either of pairs.

Here, the homogeneous type is the second element of the pairs.

impl<T> Either<T, T>[src]

pub fn into_inner(self) -> T[src]

Extract the value of an either over two equivalent types.

Trait Implementations

impl<A: Clone, B: Clone> Clone for Either<A, B>[src]

impl<A: Copy, B: Copy> Copy for Either<A, B>[src]

impl<A: Debug, B: Debug> Debug for Either<A, B>[src]

impl<A, B> Display for Either<A, B> where
    A: Display,
    B: Display
[src]

impl<A: Eq, B: Eq> Eq for Either<A, B>[src]

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

Either implements Error if both A and B implement it.

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

type Output = A::Output

The type of value produced on completion.

impl<A: Hash, B: Hash> Hash for Either<A, B>[src]

impl<A: Ord, B: Ord> Ord for Either<A, B>[src]

impl<A: PartialEq, B: PartialEq> PartialEq<Either<A, B>> for Either<A, B>[src]

impl<A: PartialOrd, B: PartialOrd> PartialOrd<Either<A, B>> for Either<A, B>[src]

impl<A, B> StructuralEq for Either<A, B>[src]

impl<A, B> StructuralPartialEq for Either<A, B>[src]

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 Output = <F as Future>::Output

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

The output that the future will produce on completion.

type Future = F

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

Which kind of future are we turning this into?

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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<F, T, E> TryFuture for F where
    F: Future<Output = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future

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.