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)),
}