pub enum AggFunc {
Sum,
Mean,
Count,
Min,
Max,
}Expand description
Expression AST and supporting enums. Supported aggregation functions.
Variants§
Sum
Sum of non-null values.
Mean
Mean of non-null values.
Count
Count of non-null values.
Min
Minimum of non-null values.
Max
Maximum of non-null values.
Trait Implementations§
impl Copy for AggFunc
impl Eq for AggFunc
impl StructuralPartialEq for AggFunc
Auto Trait Implementations§
impl Freeze for AggFunc
impl RefUnwindSafe for AggFunc
impl Send for AggFunc
impl Sync for AggFunc
impl Unpin for AggFunc
impl UnwindSafe for AggFunc
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.