pub struct LeafEntry<K: Key> {
pub key: K,
pub page_id: u32,
pub slot_id: u16,
}Expand description
An entry inside a leaf node.
Fields§
§key: K§page_id: u32§slot_id: u16Trait Implementations§
impl<K: Eq + Key> Eq for LeafEntry<K>
impl<K: Key> StructuralPartialEq for LeafEntry<K>
Auto Trait Implementations§
impl<K> Freeze for LeafEntry<K>where
K: Freeze,
impl<K> RefUnwindSafe for LeafEntry<K>where
K: RefUnwindSafe,
impl<K> Send for LeafEntry<K>where
K: Send,
impl<K> Sync for LeafEntry<K>where
K: Sync,
impl<K> Unpin for LeafEntry<K>where
K: Unpin,
impl<K> UnsafeUnpin for LeafEntry<K>where
K: UnsafeUnpin,
impl<K> UnwindSafe for LeafEntry<K>where
K: UnwindSafe,
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