pub struct AggregateFunctionCall<'a> { /* private fields */ }Implementations§
Source§impl<'a> AggregateFunctionCall<'a>
impl<'a> AggregateFunctionCall<'a>
Sourcepub fn node_id(&self) -> AggregateFunctionCallId
pub fn node_id(&self) -> AggregateFunctionCallId
The typed node ID of this node.
pub fn func_name(&self) -> &'a str
pub fn flags(&self) -> AggregateFunctionCallFlags
pub fn args(&self) -> Option<ExprList<'a>>
pub fn orderby(&self) -> Option<OrderByList<'a>>
pub fn filter_clause(&self) -> Option<Expr<'a>>
pub fn over_clause(&self) -> Option<WindowDef<'a>>
Trait Implementations§
Source§impl<'a> Clone for AggregateFunctionCall<'a>
impl<'a> Clone for AggregateFunctionCall<'a>
Source§fn clone(&self) -> AggregateFunctionCall<'a>
fn clone(&self) -> AggregateFunctionCall<'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 Debug for AggregateFunctionCall<'_>
impl Debug for AggregateFunctionCall<'_>
Source§impl Display for AggregateFunctionCall<'_>
impl Display for AggregateFunctionCall<'_>
Source§impl<'a> From<AggregateFunctionCall<'a>> for AggregateFunctionCallId
impl<'a> From<AggregateFunctionCall<'a>> for AggregateFunctionCallId
Source§fn from(n: AggregateFunctionCall<'a>) -> Self
fn from(n: AggregateFunctionCall<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> GrammarNodeType<'a> for AggregateFunctionCall<'a>
impl<'a> GrammarNodeType<'a> for AggregateFunctionCall<'a>
Source§fn from_result(
stmt_result: &'a AnyParsedStatement<'a>,
id: AnyNodeId,
) -> Option<Self>
fn from_result( stmt_result: &'a AnyParsedStatement<'a>, id: AnyNodeId, ) -> Option<Self>
Resolve
id to Self, or None if null, invalid, or tag mismatch.impl<'a> Copy for AggregateFunctionCall<'a>
Auto Trait Implementations§
impl<'a> Freeze for AggregateFunctionCall<'a>
impl<'a> !RefUnwindSafe for AggregateFunctionCall<'a>
impl<'a> !Send for AggregateFunctionCall<'a>
impl<'a> !Sync for AggregateFunctionCall<'a>
impl<'a> Unpin for AggregateFunctionCall<'a>
impl<'a> UnsafeUnpin for AggregateFunctionCall<'a>
impl<'a> !UnwindSafe for AggregateFunctionCall<'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