pub type SelectEither<'a, L, R> = Pin<Box<dyn Stream<Item = Either<L, R>> + 'a>>;
Expand description

A stream of two items

Aliased Type§

struct SelectEither<'a, L, R> { /* private fields */ }