Enum gluesql_core::ast_builder::AggregateNode
source · pub enum AggregateNode {
Count(CountArgExprNode),
Sum(ExprNode),
Min(ExprNode),
Max(ExprNode),
Avg(ExprNode),
Variance(ExprNode),
Stdev(ExprNode),
}Expand description
Available aggregate or normal SQL functions
Variants
Count(CountArgExprNode)
Sum(ExprNode)
Min(ExprNode)
Max(ExprNode)
Avg(ExprNode)
Variance(ExprNode)
Stdev(ExprNode)
Trait Implementations
sourceimpl Clone for AggregateNode
impl Clone for AggregateNode
sourcefn clone(&self) -> AggregateNode
fn clone(&self) -> AggregateNode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl TryFrom<AggregateNode> for Aggregate
impl TryFrom<AggregateNode> for Aggregate
Auto Trait Implementations
impl RefUnwindSafe for AggregateNode
impl Send for AggregateNode
impl Sync for AggregateNode
impl Unpin for AggregateNode
impl UnwindSafe for AggregateNode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more