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
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Schemas<'a>
impl<'a> Send for Schemas<'a>
impl<'a> Sync for Schemas<'a>
impl<'a> Unpin for Schemas<'a>
impl<'a> UnwindSafe for Schemas<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more