pub enum QueryExpressionChildren<'tree> {
FromClause(Box<FromClause<'tree>>),
GroupClause(Box<GroupClause<'tree>>),
Identifier(Box<Identifier<'tree>>),
JoinClause(Box<JoinClause<'tree>>),
LetClause(Box<LetClause<'tree>>),
OrderByClause(Box<OrderByClause<'tree>>),
SelectClause(Box<SelectClause<'tree>>),
WhereClause(Box<WhereClause<'tree>>),
}Variants§
FromClause(Box<FromClause<'tree>>)
GroupClause(Box<GroupClause<'tree>>)
Identifier(Box<Identifier<'tree>>)
JoinClause(Box<JoinClause<'tree>>)
LetClause(Box<LetClause<'tree>>)
OrderByClause(Box<OrderByClause<'tree>>)
SelectClause(Box<SelectClause<'tree>>)
WhereClause(Box<WhereClause<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for QueryExpressionChildren<'tree>
impl<'tree> Clone for QueryExpressionChildren<'tree>
Source§fn clone(&self) -> QueryExpressionChildren<'tree>
fn clone(&self) -> QueryExpressionChildren<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for QueryExpressionChildren<'tree>
impl<'tree> Debug for QueryExpressionChildren<'tree>
impl<'tree> Eq for QueryExpressionChildren<'tree>
Source§impl<'tree> FromNode<'tree> for QueryExpressionChildren<'tree>
impl<'tree> FromNode<'tree> for QueryExpressionChildren<'tree>
Source§impl<'tree> PartialEq for QueryExpressionChildren<'tree>
impl<'tree> PartialEq for QueryExpressionChildren<'tree>
Source§fn eq(&self, other: &QueryExpressionChildren<'tree>) -> bool
fn eq(&self, other: &QueryExpressionChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for QueryExpressionChildren<'_>
impl Spanned for QueryExpressionChildren<'_>
impl<'tree> StructuralPartialEq for QueryExpressionChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for QueryExpressionChildren<'tree>
impl<'tree> RefUnwindSafe for QueryExpressionChildren<'tree>
impl<'tree> Send for QueryExpressionChildren<'tree>
impl<'tree> Sync for QueryExpressionChildren<'tree>
impl<'tree> Unpin for QueryExpressionChildren<'tree>
impl<'tree> UnsafeUnpin for QueryExpressionChildren<'tree>
impl<'tree> UnwindSafe for QueryExpressionChildren<'tree>
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