mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-18 07:42:24 +00:00
9 lines
194 B
Rust
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),
|
|
}
|