pub enum TableType<'a> {
Table(Cow<'a, str>),
JoinedTable(Box<(Cow<'a, str>, Vec<Join<'a>>)>),
Query(Box<Select<'a>>),
Values(Values<'a>),
}
Expand description
Either an identifier or a nested query.
Variants§
Table(Cow<'a, str>)
JoinedTable(Box<(Cow<'a, str>, Vec<Join<'a>>)>)
Query(Box<Select<'a>>)
Values(Values<'a>)
Trait Implementations§
impl<'a> StructuralPartialEq for TableType<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableType<'a>
impl<'a> RefUnwindSafe for TableType<'a>
impl<'a> Send for TableType<'a>
impl<'a> Sync for TableType<'a>
impl<'a> Unpin for TableType<'a>
impl<'a> UnwindSafe for TableType<'a>
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