pub enum PagedEntry {
Local(Cell),
Overflow(OverflowRef),
}Expand description
An on-page entry: either a full local cell, or a pointer to an overflow chain carrying the cell’s body.
Variants§
Local(Cell)
Overflow(OverflowRef)
Implementations§
Trait Implementations§
Source§impl Clone for PagedEntry
impl Clone for PagedEntry
Source§fn clone(&self) -> PagedEntry
fn clone(&self) -> PagedEntry
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 PagedEntry
impl Debug for PagedEntry
Source§impl PartialEq for PagedEntry
impl PartialEq for PagedEntry
impl StructuralPartialEq for PagedEntry
Auto Trait Implementations§
impl Freeze for PagedEntry
impl RefUnwindSafe for PagedEntry
impl Send for PagedEntry
impl Sync for PagedEntry
impl Unpin for PagedEntry
impl UnsafeUnpin for PagedEntry
impl UnwindSafe for PagedEntry
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