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