pub trait BaseTable: Table + Sealed { }Expand description
A table that exists in the schema, as opposed to one a query brings into
being. .from() and the joins take these; a CTE’s pseudo-table is
reached through its Cte binding instead, so selecting from a CTE that
was never bound cannot be written.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".