Struct gluesql_core::ast_builder::GroupByNode
source · pub struct GroupByNode { /* private fields */ }Implementations
sourceimpl GroupByNode
impl GroupByNode
pub fn new<N: Into<PrevNode>, T: Into<ExprList>>(
prev_node: N,
expr_list: T
) -> Self
pub fn having<T: Into<ExprNode>>(self, expr: T) -> HavingNode
pub fn offset<T: Into<ExprNode>>(self, expr: T) -> OffsetNode
pub fn limit<T: Into<ExprNode>>(self, expr: T) -> LimitNode
pub fn project<T: Into<SelectItemList>>(self, select_items: T) -> ProjectNode
pub fn order_by<T: Into<OrderByExprList>>(self, expr_list: T) -> OrderByNode
Trait Implementations
sourceimpl Clone for GroupByNode
impl Clone for GroupByNode
sourcefn clone(&self) -> GroupByNode
fn clone(&self) -> GroupByNode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl From<GroupByNode> for QueryNode
impl From<GroupByNode> for QueryNode
sourcefn from(node: GroupByNode) -> Self
fn from(node: GroupByNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for GroupByNode
impl Send for GroupByNode
impl Sync for GroupByNode
impl Unpin for GroupByNode
impl UnwindSafe for GroupByNode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more