pub struct LeafTablePage<'a> {
pub header: LeafPageHeader,
pub cell_pointers: Vec<u16>,
pub cells: Vec<LeafTableCell<'a>>,
}
Fields§
§header: LeafPageHeader
§cell_pointers: Vec<u16>
§cells: Vec<LeafTableCell<'a>>
Auto Trait Implementations§
impl<'a> Freeze for LeafTablePage<'a>
impl<'a> RefUnwindSafe for LeafTablePage<'a>
impl<'a> Send for LeafTablePage<'a>
impl<'a> Sync for LeafTablePage<'a>
impl<'a> Unpin for LeafTablePage<'a>
impl<'a> UnwindSafe for LeafTablePage<'a>
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