pub enum AggBy {
Count,
Sum,
Min,
Max,
}Expand description
Ranking metric for AggSegment::top_groups.
Variants§
Count
By row count (default).
Sum
By sum.
Min
By minimum (ascending — smallest mins first).
Max
By maximum (descending — largest maxes first).
Implementations§
Trait Implementations§
impl Copy for AggBy
impl Eq for AggBy
impl StructuralPartialEq for AggBy
Auto Trait Implementations§
impl Freeze for AggBy
impl RefUnwindSafe for AggBy
impl Send for AggBy
impl Sync for AggBy
impl Unpin for AggBy
impl UnsafeUnpin for AggBy
impl UnwindSafe for AggBy
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