Type Alias futures_util::future::try_select::EitherErr

source ·
type EitherErr<A, B> = Either<(<A as TryFuture>::Error, B), (<B as TryFuture>::Error, A)>;

Aliased Type§

enum EitherErr<A, B> {
    Left((<A as TryFuture>::Error, B)),
    Right((<B as TryFuture>::Error, A)),
}

Variants§

§

Left((<A as TryFuture>::Error, B))

First branch of the type

§

Right((<B as TryFuture>::Error, A))

Second branch of the type