pub struct Select { /* private fields */ }Implementations§
Source§impl Select
impl Select
pub fn fetch_clause(&self) -> Option<FetchClause>
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 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>
pub fn with_clause(&self) -> Option<WithClause>
Trait Implementations§
Source§impl AstNode for Select
impl AstNode for Select
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<Select> for ExplainStmt
impl From<Select> for ExplainStmt
Source§fn from(node: Select) -> ExplainStmt
fn from(node: Select) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Select> for PreparableStmt
impl From<Select> for PreparableStmt
Source§fn from(node: Select) -> PreparableStmt
fn from(node: Select) -> PreparableStmt
Converts to this type from the input type.
Source§impl From<Select> for SelectVariant
impl From<Select> for SelectVariant
Source§fn from(node: Select) -> SelectVariant
fn from(node: Select) -> SelectVariant
Converts to this type from the input type.
Source§impl HasWithClause for Select
impl HasWithClause for Select
fn with_clause(&self) -> Option<WithClause>
impl Eq for Select
impl StructuralPartialEq for Select
Auto Trait Implementations§
impl Freeze for Select
impl !RefUnwindSafe for Select
impl !Send for Select
impl !Sync for Select
impl Unpin for Select
impl !UnwindSafe for Select
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