pub trait HasTableRef {
// Required method
fn table_ref_mut(&mut self) -> &mut TableRef;
}Expand description
Anything with a table reference: the FROM of a SELECT, the target of an
INSERT/UPDATE/DELETE, the USING of a DELETE.
Required Methods§
Sourcefn table_ref_mut(&mut self) -> &mut TableRef
fn table_ref_mut(&mut self) -> &mut TableRef
The table reference to modify.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".