Enum TableRef
pub enum TableRef {
Cte {
nesting: usize,
index: usize,
},
Derived(TableDerived),
Table(TableId),
Arg(ExprArg),
}Variants§
Cte
An aliased table (in a FROM statement or equivalent).
Fields
Derived(TableDerived)
A table derived from a query
Table(TableId)
A defined table from the schema
Arg(ExprArg)
The table ref will be provided at a later time (and will become a derived table)
Implementations§
Trait Implementations§
impl StructuralPartialEq for TableRef
Auto Trait Implementations§
impl Freeze for TableRef
impl RefUnwindSafe for TableRef
impl Send for TableRef
impl Sync for TableRef
impl Unpin for TableRef
impl UnwindSafe for TableRef
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