pub trait HasExtraTables {
// Required method
fn extra_tables_mut(&mut self) -> &mut Vec<TableRef>;
}Expand description
A statement whose from-item list may hold more than one entry.
SQLite’s FROM takes either a comma-separated table-or-subquery list or a
join-clause, and , is itself one of the join-operators — so the two are
the same thing and mixing them is legal. The first entry lives in
HasTableRef; the rest are appended here.
Required Methods§
Sourcefn extra_tables_mut(&mut self) -> &mut Vec<TableRef>
fn extra_tables_mut(&mut self) -> &mut Vec<TableRef>
The additional from-items to modify.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".