| Current Path : /usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/regex-syntax/src/ |
| Current File : //usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/regex-syntax/src/either.rs |
/// 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),
}