1
2
3
4
5
6
7
/// Represents a type with two values.
pub enum Either {
    /// Left value.
    Left,
    /// Right type.
    Right,
}