Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
rust
/
crates
/
regex-syntax
/
a465e56ee2677831c421d6b498db6ee7dc403c4d
/
.
/
src
/
either.rs
blob: 7ae41e4ced7460d31b8e19f7b534f0924578dc28 [
file
] [
log
] [
blame
]
/// 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
),
}