pub struct OrderedSetFunctionCall<'a> { /* private fields */ }Implementations§
Source§impl<'a> OrderedSetFunctionCall<'a>
impl<'a> OrderedSetFunctionCall<'a>
Sourcepub fn node_id(&self) -> OrderedSetFunctionCallId
pub fn node_id(&self) -> OrderedSetFunctionCallId
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_expr(&self) -> Option<Expr<'a>>
pub fn filter_clause(&self) -> Option<Expr<'a>>
pub fn over_clause(&self) -> Option<WindowDef<'a>>
Trait Implementations§
Source§impl<'a> Clone for OrderedSetFunctionCall<'a>
impl<'a> Clone for OrderedSetFunctionCall<'a>
Source§fn clone(&self) -> OrderedSetFunctionCall<'a>
fn clone(&self) -> OrderedSetFunctionCall<'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 OrderedSetFunctionCall<'_>
impl Debug for OrderedSetFunctionCall<'_>
Source§impl Display for OrderedSetFunctionCall<'_>
impl Display for OrderedSetFunctionCall<'_>
Source§impl<'a> From<OrderedSetFunctionCall<'a>> for OrderedSetFunctionCallId
impl<'a> From<OrderedSetFunctionCall<'a>> for OrderedSetFunctionCallId
Source§fn from(n: OrderedSetFunctionCall<'a>) -> Self
fn from(n: OrderedSetFunctionCall<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> GrammarNodeType<'a> for OrderedSetFunctionCall<'a>
impl<'a> GrammarNodeType<'a> for OrderedSetFunctionCall<'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 OrderedSetFunctionCall<'a>
Auto Trait Implementations§
impl<'a> Freeze for OrderedSetFunctionCall<'a>
impl<'a> !RefUnwindSafe for OrderedSetFunctionCall<'a>
impl<'a> !Send for OrderedSetFunctionCall<'a>
impl<'a> !Sync for OrderedSetFunctionCall<'a>
impl<'a> Unpin for OrderedSetFunctionCall<'a>
impl<'a> UnsafeUnpin for OrderedSetFunctionCall<'a>
impl<'a> !UnwindSafe for OrderedSetFunctionCall<'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