Enum partiql_logical::AggFunc
source · pub enum AggFunc {
AggAvg,
AggCount,
AggMax,
AggMin,
AggSum,
AggAny,
AggEvery,
}Expand description
SQL aggregate function
Variants§
AggAvg
Represents SQL’s AVG aggregation function
AggCount
Represents SQL’s COUNT aggregation function
AggMax
Represents SQL’s MAX aggregation function
AggMin
Represents SQL’s MIN aggregation function
AggSum
Represents SQL’s SUM aggregation function
AggAny
Represents SQL’s ANY/SOME aggregation function
AggEvery
Represents SQL’s EVERY aggregation function
Trait Implementations§
source§impl PartialEq<AggFunc> for AggFunc
impl PartialEq<AggFunc> for AggFunc
impl Eq for AggFunc
impl StructuralEq for AggFunc
impl StructuralPartialEq for AggFunc
Auto Trait Implementations§
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