pub struct InteriorCell {
pub divider_rowid: i64,
pub child_page: u32,
}Expand description
One divider in an interior page: “rowids up to divider_rowid live in
the subtree under child_page”.
Fields§
§divider_rowid: i64§child_page: u32Implementations§
Trait Implementations§
Source§impl Clone for InteriorCell
impl Clone for InteriorCell
Source§fn clone(&self) -> InteriorCell
fn clone(&self) -> InteriorCell
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 InteriorCell
impl Debug for InteriorCell
Source§impl PartialEq for InteriorCell
impl PartialEq for InteriorCell
impl Eq for InteriorCell
impl StructuralPartialEq for InteriorCell
Auto Trait Implementations§
impl Freeze for InteriorCell
impl RefUnwindSafe for InteriorCell
impl Send for InteriorCell
impl Sync for InteriorCell
impl Unpin for InteriorCell
impl UnsafeUnpin for InteriorCell
impl UnwindSafe for InteriorCell
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