pub struct SelectInto { /* private fields */ }
Implementations§
Source§impl SelectInto
impl SelectInto
pub fn filter_clause(&self) -> Option<FilterClause>
pub fn from_clause(&self) -> Option<FromClause>
pub fn group_by_clause(&self) -> Option<GroupByClause>
pub fn having_clause(&self) -> Option<HavingClause>
pub fn into_clause(&self) -> Option<IntoClause>
pub fn limit_clause(&self) -> Option<LimitClause>
pub fn locking_clauses(&self) -> AstChildren<LockingClause> ⓘ
pub fn offset_clause(&self) -> Option<OffsetClause>
pub fn order_by_clause(&self) -> Option<OrderByClause>
pub fn select_clause(&self) -> Option<SelectClause>
pub fn where_clause(&self) -> Option<WhereClause>
pub fn window_clause(&self) -> Option<WindowClause>
Trait Implementations§
Source§impl AstNode for SelectInto
impl AstNode for SelectInto
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 SelectInto
impl Clone for SelectInto
Source§fn clone(&self) -> SelectInto
fn clone(&self) -> SelectInto
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 SelectInto
impl Debug for SelectInto
Source§impl From<SelectInto> for Stmt
impl From<SelectInto> for Stmt
Source§fn from(node: SelectInto) -> Stmt
fn from(node: SelectInto) -> Stmt
Converts to this type from the input type.
Source§impl Hash for SelectInto
impl Hash for SelectInto
Source§impl PartialEq for SelectInto
impl PartialEq for SelectInto
impl Eq for SelectInto
impl StructuralPartialEq for SelectInto
Auto Trait Implementations§
impl Freeze for SelectInto
impl !RefUnwindSafe for SelectInto
impl !Send for SelectInto
impl !Sync for SelectInto
impl Unpin for SelectInto
impl !UnwindSafe for SelectInto
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