pub struct Schemas<'a> {
pub schemas: BTreeMap<&'a str, Schema<'a>>,
pub procedures: BTreeMap<&'a str, Procedure>,
pub functions: BTreeMap<&'a str, Functions>,
}Expand description
A description of tables, view, procedures and function in a schemas definition file
Fields§
§schemas: BTreeMap<&'a str, Schema<'a>>Map from name to Tables or views
procedures: BTreeMap<&'a str, Procedure>Map from name to procedure
functions: BTreeMap<&'a str, Functions>Map from name to function