summaryrefslogtreecommitdiff
path: root/vendor/regex-syntax/src/either.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/regex-syntax/src/either.rs')
-rw-r--r--vendor/regex-syntax/src/either.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/vendor/regex-syntax/src/either.rs b/vendor/regex-syntax/src/either.rs
deleted file mode 100644
index 7ae41e4c..00000000
--- a/vendor/regex-syntax/src/either.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-/// 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),
-}