pub enum AggKind {
Count,
Sum,
Avg,
Min,
Max,
}Expand description
Aggregate function kind for HavingExpr.
Used by linq!(having ...) (Form B) when the having clause contains
nested boolean expressions (AND/OR/NOT) or aggregate-versus-aggregate
comparisons (COUNT(b.id) > SUM(b.views)).
Variants§
Implementations§
Trait Implementations§
impl Copy for AggKind
impl Eq for AggKind
impl StructuralPartialEq for AggKind
Auto Trait Implementations§
impl Freeze for AggKind
impl RefUnwindSafe for AggKind
impl Send for AggKind
impl Sync for AggKind
impl Unpin for AggKind
impl UnsafeUnpin for AggKind
impl UnwindSafe for AggKind
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