pub type MaybeEither<L, R> = Option<Either<L, R>>;Expand description
A shortcut to represent the possibility of neither left nor right values existing
by wrapping the Either<L, R> in an Option.
Aliased Type§
pub enum MaybeEither<L, R> {
None,
Some(Either<L, R>),
}