pub struct IndexCellPayload<'a> {
pub header_size: u64,
pub column_types: Vec<SerialType>,
pub column_values: Vec<Option<Payload<'a>>>,
pub rowid: u64,
}
Fields§
§header_size: u64
§column_types: Vec<SerialType>
§column_values: Vec<Option<Payload<'a>>>
§rowid: u64
Auto Trait Implementations§
impl<'a> Freeze for IndexCellPayload<'a>
impl<'a> RefUnwindSafe for IndexCellPayload<'a>
impl<'a> Send for IndexCellPayload<'a>
impl<'a> Sync for IndexCellPayload<'a>
impl<'a> Unpin for IndexCellPayload<'a>
impl<'a> UnwindSafe for IndexCellPayload<'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