pub struct Schema {
pub tables_fields_names: HashMap<&'static str, Vec<&'static str>>,
pub tables_fields_types: HashMap<&'static str, Box<dyn DataType>>,
}Expand description
A Representation of the Schema of the data including columns, tables and types
Fields§
§tables_fields_names: HashMap<&'static str, Vec<&'static str>>§tables_fields_types: HashMap<&'static str, Box<dyn DataType>>Auto Trait Implementations§
impl Freeze for Schema
impl !RefUnwindSafe for Schema
impl !Send for Schema
impl !Sync for Schema
impl Unpin for Schema
impl !UnwindSafe for Schema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more