pub struct AggregateFunctionCallExpression<'a> {
pub function: Function<'a>,
pub args: Vec<Expression<'a>>,
pub function_span: Span,
pub distinct_span: Option<Span>,
pub within_group: Option<(Span, Vec<(Expression<'a>, OrderFlag)>)>,
pub filter: Option<(Span, Expression<'a>)>,
pub over: Option<WindowClause<'a>>,
}Fields§
§function: Function<'a>§args: Vec<Expression<'a>>§function_span: Span§distinct_span: Option<Span>§within_group: Option<(Span, Vec<(Expression<'a>, OrderFlag)>)>§filter: Option<(Span, Expression<'a>)>§over: Option<WindowClause<'a>>Trait Implementations§
Source§impl<'a> Clone for AggregateFunctionCallExpression<'a>
impl<'a> Clone for AggregateFunctionCallExpression<'a>
Source§fn clone(&self) -> AggregateFunctionCallExpression<'a>
fn clone(&self) -> AggregateFunctionCallExpression<'a>
Returns a duplicate 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<'a> Debug for AggregateFunctionCallExpression<'a>
impl<'a> Debug for AggregateFunctionCallExpression<'a>
Auto Trait Implementations§
impl<'a> Freeze for AggregateFunctionCallExpression<'a>
impl<'a> RefUnwindSafe for AggregateFunctionCallExpression<'a>
impl<'a> Send for AggregateFunctionCallExpression<'a>
impl<'a> Sync for AggregateFunctionCallExpression<'a>
impl<'a> Unpin for AggregateFunctionCallExpression<'a>
impl<'a> UnsafeUnpin for AggregateFunctionCallExpression<'a>
impl<'a> UnwindSafe for AggregateFunctionCallExpression<'a>
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