pub enum AggregateExpression {
CountSolutions {
distinct: bool,
},
FunctionCall {
name: AggregateFunction,
expr: Expression,
distinct: bool,
},
}
Expand description
A set function used in aggregates (c.f. GraphPattern::Group
).
Variants§
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 Display for AggregateExpression
impl Display for AggregateExpression
Source§impl Hash for AggregateExpression
impl Hash for AggregateExpression
Source§impl PartialEq for AggregateExpression
impl PartialEq for AggregateExpression
impl Eq for AggregateExpression
impl StructuralPartialEq for AggregateExpression
Auto Trait Implementations§
impl Freeze for AggregateExpression
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