rustc/vendor/regex-syntax/src/either.rs
2018-12-16 10:13:16 -08:00

9 lines
194 B
Rust

/// A simple binary sum type.
///
/// This is occasionally useful in an ad hoc fashion.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum Either<Left, Right> {
Left(Left),
Right(Right),
}