enum QueuedRowGroupDecision {
Read(NextRowGroup),
Skip {
remaining_budget: RowBudget,
},
}Expand description
Plan for the next queued row group after row-selection slicing.
Variants§
Read(NextRowGroup)
Hand this row group to the builder.
Skip
Skip this row group, and keep scanning with the updated budget.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueuedRowGroupDecision
impl RefUnwindSafe for QueuedRowGroupDecision
impl Send for QueuedRowGroupDecision
impl Sync for QueuedRowGroupDecision
impl Unpin for QueuedRowGroupDecision
impl UnsafeUnpin for QueuedRowGroupDecision
impl UnwindSafe for QueuedRowGroupDecision
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