pub struct StreamRow {
pub row_number: u32,
pub cells: Vec<(u32, CellValue)>,
}Expand description
A single row produced by the streaming reader.
Fields§
§row_number: u321-based row number.
cells: Vec<(u32, CellValue)>Cells in this row as (1-based column index, value) pairs.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StreamRow
impl RefUnwindSafe for StreamRow
impl Send for StreamRow
impl Sync for StreamRow
impl Unpin for StreamRow
impl UnwindSafe for StreamRow
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