pub enum Aggregate {
Sum,
Min,
Max,
}Expand description
How the scores of a member that is in more than one input become one score.
Variants§
Sum
Add them up. AGGREGATE SUM, and the default.
Min
Keep the lowest. AGGREGATE MIN.
Max
Keep the highest. AGGREGATE MAX.
Trait Implementations§
impl Copy for Aggregate
impl Eq for Aggregate
impl StructuralPartialEq for Aggregate
Auto Trait Implementations§
impl Freeze for Aggregate
impl RefUnwindSafe for Aggregate
impl Send for Aggregate
impl Sync for Aggregate
impl Unpin for Aggregate
impl UnsafeUnpin for Aggregate
impl UnwindSafe for Aggregate
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