pub trait HasSchema {
    // Required method
    fn schematic(&self) -> &Schematic;
}
Expand description

Access to a connection’s schema.

Required Methods§

source

fn schematic(&self) -> &Schematic

Returns the schema for the database.

Implementors§