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: SetQuantifier
Trait 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 ==
.impl Eq for AggregateExpression
impl StructuralEq for AggregateExpression
impl StructuralPartialEq for AggregateExpression
Auto Trait Implementations§
impl RefUnwindSafe for AggregateExpression
impl Send for AggregateExpression
impl Sync for AggregateExpression
impl Unpin for AggregateExpression
impl UnwindSafe for AggregateExpression
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