pub enum Removed<L, R> {
Nothing,
Single((L, R)),
Double((L, R), (L, R)),
}Expand description
An enum representing the items removed from a BiMap.
Variants§
Trait Implementations§
impl<L: Eq, R: Eq> Eq for Removed<L, R>
impl<L, R> StructuralPartialEq for Removed<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for Removed<L, R>
impl<L, R> RefUnwindSafe for Removed<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for Removed<L, R>
impl<L, R> Sync for Removed<L, R>
impl<L, R> Unpin for Removed<L, R>
impl<L, R> UnwindSafe for Removed<L, R>where
L: UnwindSafe,
R: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more