pub struct LeafTableCell<'a> {
pub payload_size: u64,
pub rowid: u64,
pub payload: TableCellPayload<'a>,
pub overflow_page_no: Option<u32>,
}
Fields§
§payload_size: u64
§rowid: u64
§payload: TableCellPayload<'a>
§overflow_page_no: Option<u32>
Auto Trait Implementations§
impl<'a> Freeze for LeafTableCell<'a>
impl<'a> RefUnwindSafe for LeafTableCell<'a>
impl<'a> Send for LeafTableCell<'a>
impl<'a> Sync for LeafTableCell<'a>
impl<'a> Unpin for LeafTableCell<'a>
impl<'a> UnwindSafe for LeafTableCell<'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