struct NextRowGroup {
row_group_idx: usize,
row_count: usize,
selection: Option<RowSelection>,
budget: RowBudget,
}Expand description
Work item handed from RowGroupFrontier to RowGroupReaderBuilder.
Fields§
§row_group_idx: usize§row_count: usize§selection: Option<RowSelection>This row group’s slice of the global selection, or None when all rows
are selected.
budget: RowBudgetBudget snapshot to apply while decoding this row group.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NextRowGroup
impl RefUnwindSafe for NextRowGroup
impl Send for NextRowGroup
impl Sync for NextRowGroup
impl Unpin for NextRowGroup
impl UnsafeUnpin for NextRowGroup
impl UnwindSafe for NextRowGroup
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