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 Freeze for EmitTo
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)