pub enum LeafDeleteResult<K, V> {
Done((K, V)),
UnderSize(usize),
}
Variants§
Done((K, V))
Succeeded deleted
UnderSize(usize)
Item exists, but not able to delete because a merge is required
Auto Trait Implementations§
impl<K, V> Freeze for LeafDeleteResult<K, V>
impl<K, V> RefUnwindSafe for LeafDeleteResult<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for LeafDeleteResult<K, V>
impl<K, V> Sync for LeafDeleteResult<K, V>
impl<K, V> Unpin for LeafDeleteResult<K, V>
impl<K, V> UnwindSafe for LeafDeleteResult<K, V>where
K: UnwindSafe,
V: 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