pub struct SplitPoint {
pub pos: usize,
pub split_ikey: u64,
}Expand description
Split point for leaf node splitting.
Fields§
§pos: usizeLogical position where to split (in post-insert coordinates).
split_ikey: u64The ikey that will be the first key of the new (right) leaf.
Trait Implementations§
Source§impl Clone for SplitPoint
impl Clone for SplitPoint
Source§fn clone(&self) -> SplitPoint
fn clone(&self) -> SplitPoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SplitPoint
impl Debug for SplitPoint
impl Copy for SplitPoint
Auto Trait Implementations§
impl Freeze for SplitPoint
impl RefUnwindSafe for SplitPoint
impl Send for SplitPoint
impl Sync for SplitPoint
impl Unpin for SplitPoint
impl UnwindSafe for SplitPoint
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