pub struct SelectClause { /* private fields */ }
Implementations§
Source§impl SelectClause
impl SelectClause
pub fn distinct_clause(&self) -> Option<DistinctClause>
pub fn target_list(&self) -> Option<TargetList>
pub fn all_token(&self) -> Option<SyntaxToken>
pub fn select_token(&self) -> Option<SyntaxToken>
Trait Implementations§
Source§impl AstNode for SelectClause
impl AstNode for SelectClause
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 Clone for SelectClause
impl Clone for SelectClause
Source§fn clone(&self) -> SelectClause
fn clone(&self) -> SelectClause
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 SelectClause
impl Debug for SelectClause
Source§impl Hash for SelectClause
impl Hash for SelectClause
Source§impl PartialEq for SelectClause
impl PartialEq for SelectClause
impl Eq for SelectClause
impl StructuralPartialEq for SelectClause
Auto Trait Implementations§
impl Freeze for SelectClause
impl !RefUnwindSafe for SelectClause
impl !Send for SelectClause
impl !Sync for SelectClause
impl Unpin for SelectClause
impl !UnwindSafe for SelectClause
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