pub enum RemoveResult<K, V> {
Removed {
old_value: V,
old_key: K,
index: usize,
},
None,
}Variants§
Trait Implementations§
impl<K, V> StructuralPartialEq for RemoveResult<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for RemoveResult<K, V>
impl<K, V> RefUnwindSafe for RemoveResult<K, V>where
V: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, V> Send for RemoveResult<K, V>
impl<K, V> Sync for RemoveResult<K, V>
impl<K, V> Unpin for RemoveResult<K, V>
impl<K, V> UnwindSafe for RemoveResult<K, V>where
V: UnwindSafe,
K: 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