pub struct InsertResult<K, V> {
pub old_value: V,
pub old_key: K,
}Fields§
§old_value: V§old_key: KTrait Implementations§
impl<K, V> StructuralPartialEq for InsertResult<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for InsertResult<K, V>
impl<K, V> RefUnwindSafe for InsertResult<K, V>where
V: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, V> Send for InsertResult<K, V>
impl<K, V> Sync for InsertResult<K, V>
impl<K, V> Unpin for InsertResult<K, V>
impl<K, V> UnwindSafe for InsertResult<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