pub enum Op<'a, T, K: ?Sized, V: ?Sized> {
Merged {
page: MutPage,
freed: [u64; 2],
marker: PhantomData<T>,
},
Rebalanced {
k: &'a K,
v: &'a V,
l: u64,
r: u64,
freed: [u64; 2],
},
Put(Put<'a, K, V>),
}
Expand description
Represents the result of a merge or rebalance, without touching the parent of the merge/rebalance.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a, T, K, V> Freeze for Op<'a, T, K, V>
impl<'a, T, K, V> RefUnwindSafe for Op<'a, T, K, V>
impl<'a, T, K, V> Send for Op<'a, T, K, V>
impl<'a, T, K, V> Sync for Op<'a, T, K, V>
impl<'a, T, K, V> Unpin for Op<'a, T, K, V>
impl<'a, T, K, V> UnwindSafe for Op<'a, T, K, V>
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