From 0a05701441c84773849e74cec168cb8852d58218 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 30 Mar 2025 22:42:04 +0200 Subject: refactor: make remove & swap_remove return new FieldOwned struct --- src/util.rs | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/util.rs') 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(A), - B(B), -} - -impl Either -{ - pub fn as_a(&self) -> Option<&A> - { - match self { - Self::A(a) => Some(a), - Self::B(_) => None, - } - } -} -- cgit v1.2.3-18-g5258