summaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-03-30 22:42:04 +0200
committerHampusM <hampus@hampusmat.com>2025-03-30 22:42:04 +0200
commit0a05701441c84773849e74cec168cb8852d58218 (patch)
treefd99b78e58c7b9f89100b645ea727b2eff61c688 /src/util.rs
parent2a30a0456c2d1898cc65908bd43a7f7b15abc7db (diff)
refactor: make remove & swap_remove return new FieldOwned struct
Diffstat (limited to 'src/util.rs')
-rw-r--r--src/util.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/util.rs b/src/util.rs
index 8ff79c7..242df23 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -78,21 +78,3 @@ impl Drop for AnonUnique
}
}
}
-
-#[derive(Debug)]
-pub enum Either<A, B>
-{
- A(A),
- B(B),
-}
-
-impl<A, B> Either<A, B>
-{
- pub fn as_a(&self) -> Option<&A>
- {
- match self {
- Self::A(a) => Some(a),
- Self::B(_) => None,
- }
- }
-}