pub enum Put<'a, K: ?Sized, V: ?Sized> {
Ok(Ok),
Split {
split_key: &'a K,
split_value: &'a V,
left: MutPage,
right: MutPage,
freed: u64,
},
}
Expand description
The result of an insertion, i.e. either an update or a split.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a, K, V> Freeze for Put<'a, K, V>
impl<'a, K, V> RefUnwindSafe for Put<'a, K, V>
impl<'a, K, V> Send for Put<'a, K, V>
impl<'a, K, V> Sync for Put<'a, K, V>
impl<'a, K, V> Unpin for Put<'a, K, V>
impl<'a, K, V> UnwindSafe for Put<'a, 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