pub enum GroupBy {
GroupingCube(GroupingCube),
GroupingExpr(GroupingExpr),
GroupingRollup(GroupingRollup),
GroupingSets(GroupingSets),
}Variants§
GroupingCube(GroupingCube)
GroupingExpr(GroupingExpr)
GroupingRollup(GroupingRollup)
GroupingSets(GroupingSets)
Trait Implementations§
Source§impl AstNode for GroupBy
impl AstNode for GroupBy
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl From<GroupingCube> for GroupBy
impl From<GroupingCube> for GroupBy
Source§fn from(node: GroupingCube) -> GroupBy
fn from(node: GroupingCube) -> GroupBy
Converts to this type from the input type.
Source§impl From<GroupingExpr> for GroupBy
impl From<GroupingExpr> for GroupBy
Source§fn from(node: GroupingExpr) -> GroupBy
fn from(node: GroupingExpr) -> GroupBy
Converts to this type from the input type.
Source§impl From<GroupingRollup> for GroupBy
impl From<GroupingRollup> for GroupBy
Source§fn from(node: GroupingRollup) -> GroupBy
fn from(node: GroupingRollup) -> GroupBy
Converts to this type from the input type.
Source§impl From<GroupingSets> for GroupBy
impl From<GroupingSets> for GroupBy
Source§fn from(node: GroupingSets) -> GroupBy
fn from(node: GroupingSets) -> GroupBy
Converts to this type from the input type.
impl Eq for GroupBy
impl StructuralPartialEq for GroupBy
Auto Trait Implementations§
impl Freeze for GroupBy
impl !RefUnwindSafe for GroupBy
impl !Send for GroupBy
impl !Sync for GroupBy
impl Unpin for GroupBy
impl !UnwindSafe for GroupBy
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