pub struct SqlTableSchema {
pub name: String,
pub fields: HashMap<String, SQLType>,
}
Fields§
§name: String
§fields: HashMap<String, SQLType>
Implementations§
Source§impl SqlTableSchema
impl SqlTableSchema
pub fn field_exists(&self, field_name: &str) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SqlTableSchema
impl RefUnwindSafe for SqlTableSchema
impl Send for SqlTableSchema
impl Sync for SqlTableSchema
impl Unpin for SqlTableSchema
impl UnwindSafe for SqlTableSchema
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