pub enum LeafUpsertResult<K, V> {
Inserted,
Updated(V),
IsFull(usize, K, V),
}
Variants§
Auto Trait Implementations§
impl<K, V> Freeze for LeafUpsertResult<K, V>
impl<K, V> RefUnwindSafe for LeafUpsertResult<K, V>where
V: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, V> Send for LeafUpsertResult<K, V>
impl<K, V> Sync for LeafUpsertResult<K, V>
impl<K, V> Unpin for LeafUpsertResult<K, V>
impl<K, V> UnwindSafe for LeafUpsertResult<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