struct RowGroupInfo {
row_group_idx: usize,
row_count: usize,
plan_builder: ReadPlanBuilder,
budget: RowBudget,
}Expand description
The current row group being read, its read plan, and its offset/limit budget.
Fields§
§row_group_idx: usize§row_count: usize§plan_builder: ReadPlanBuilder§budget: RowBudgetTrait Implementations§
Auto Trait Implementations§
impl Freeze for RowGroupInfo
impl RefUnwindSafe for RowGroupInfo
impl Send for RowGroupInfo
impl Sync for RowGroupInfo
impl Unpin for RowGroupInfo
impl UnsafeUnpin for RowGroupInfo
impl UnwindSafe for RowGroupInfo
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