Enum sanakirja_core::btree::put::Put
source · 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: ?Sized, V: ?Sized> RefUnwindSafe for Put<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K: ?Sized, V: ?Sized> Send for Put<'a, K, V>
impl<'a, K: ?Sized, V: ?Sized> Sync for Put<'a, K, V>
impl<'a, K: ?Sized, V: ?Sized> Unpin for Put<'a, K, V>
impl<'a, K: ?Sized, V: ?Sized> UnwindSafe for Put<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
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