Enum datafusion_physical_expr::EmitTo
source · pub enum EmitTo {
All,
First(usize),
}
Expand description
Describes how many rows should be emitted during grouping.
Variants§
All
Emit all groups
First(usize)
Emit only the first n
groups and shift all existing group
indexes down by n
.
For example, if n=10
, group_index 0, 1, ... 9
are emitted
and group indexes ’10, 11, 12, ...
become 0, 1, 2, ...
.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for EmitTo
impl Send for EmitTo
impl Sync for EmitTo
impl Unpin for EmitTo
impl UnwindSafe for EmitTo
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