pub trait ScalarCatalog {
// Required method
fn source(&self, table: &str) -> Option<&dyn ScalarSource>;
}Expand description
Maps a table name to its ScalarSource. The resolver only ever looks up the
child (subquery) table — the parent is never read.
Required Methods§
Sourcefn source(&self, table: &str) -> Option<&dyn ScalarSource>
fn source(&self, table: &str) -> Option<&dyn ScalarSource>
The source for table, or None if this catalog does not back it.