pub struct Table { /* private fields */ }Implementations§
Source§impl Table
impl Table
pub fn fetch_clause(&self) -> Option<FetchClause>
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 relation_name(&self) -> Option<RelationName>
pub fn with_clause(&self) -> Option<WithClause>
pub fn semicolon_token(&self) -> Option<SyntaxToken>
pub fn table_token(&self) -> Option<SyntaxToken>
Trait Implementations§
Source§impl AstNode for Table
impl AstNode for Table
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,
impl Eq for Table
Source§impl From<Table> for ExplainStmt
impl From<Table> for ExplainStmt
Source§fn from(node: Table) -> ExplainStmt
fn from(node: Table) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Table> for PreparableStmt
impl From<Table> for PreparableStmt
Source§fn from(node: Table) -> PreparableStmt
fn from(node: Table) -> PreparableStmt
Converts to this type from the input type.
Source§impl From<Table> for SelectVariant
impl From<Table> for SelectVariant
Source§fn from(node: Table) -> SelectVariant
fn from(node: Table) -> SelectVariant
Converts to this type from the input type.
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl !RefUnwindSafe for Table
impl !Send for Table
impl !Sync for Table
impl !UnwindSafe for Table
impl Freeze for Table
impl Unpin for Table
impl UnsafeUnpin for Table
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more