pub enum SelectTable<'bump> {
Table(QualifiedName<'bump>, Option<As<'bump>>, Option<Indexed<'bump>>),
TableCall(QualifiedName<'bump>, Option<&'bump [Expr<'bump>]>, Option<As<'bump>>),
Select(&'bump Select<'bump>, Option<As<'bump>>),
Sub(FromClause<'bump>, Option<As<'bump>>),
}Expand description
Table or subquery
Variants§
Table(QualifiedName<'bump>, Option<As<'bump>>, Option<Indexed<'bump>>)
table
TableCall(QualifiedName<'bump>, Option<&'bump [Expr<'bump>]>, Option<As<'bump>>)
table function call
Select(&'bump Select<'bump>, Option<As<'bump>>)
SELECT subquery
Sub(FromClause<'bump>, Option<As<'bump>>)
subquery
Trait Implementations§
Source§impl<'bump> Debug for SelectTable<'bump>
impl<'bump> Debug for SelectTable<'bump>
impl<'bump> Eq for SelectTable<'bump>
Source§impl<'bump> PartialEq for SelectTable<'bump>
impl<'bump> PartialEq for SelectTable<'bump>
Source§fn eq(&self, other: &SelectTable<'bump>) -> bool
fn eq(&self, other: &SelectTable<'bump>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'bump> StructuralPartialEq for SelectTable<'bump>
Auto Trait Implementations§
impl<'bump> !RefUnwindSafe for SelectTable<'bump>
impl<'bump> !Send for SelectTable<'bump>
impl<'bump> !Sync for SelectTable<'bump>
impl<'bump> !UnwindSafe for SelectTable<'bump>
impl<'bump> Freeze for SelectTable<'bump>
impl<'bump> Unpin for SelectTable<'bump>
impl<'bump> UnsafeUnpin for SelectTable<'bump>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.