Struct partiql_logical::AggregateExpression
source · pub struct AggregateExpression {
pub name: String,
pub expr: ValueExpr,
pub func: AggFunc,
pub setq: SetQuantifier,
}Expand description
An SQL aggregation function call with its arguments
Fields§
§name: String§expr: ValueExpr§func: AggFunc§setq: SetQuantifierTrait Implementations§
source§impl Clone for AggregateExpression
impl Clone for AggregateExpression
source§fn clone(&self) -> AggregateExpression
fn clone(&self) -> AggregateExpression
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AggregateExpression
impl Debug for AggregateExpression
source§impl PartialEq<AggregateExpression> for AggregateExpression
impl PartialEq<AggregateExpression> for AggregateExpression
source§fn eq(&self, other: &AggregateExpression) -> bool
fn eq(&self, other: &AggregateExpression) -> bool
This method tests for
self and other values to be equal, and is used
by ==.