Struct TableDef
pub struct TableDef {
pub info: TableInfo,
pub columns: Vec<ColumnInfo>,
pub indexes: Vec<IndexInfo>,
pub foreign_keys: Vec<ForeignKeyInfo>,
}Fields§
§info: TableInfo§columns: Vec<ColumnInfo>§indexes: Vec<IndexInfo>§foreign_keys: Vec<ForeignKeyInfo>Implementations§
§impl TableDef
impl TableDef
pub fn write(&self) -> TableCreateStatement
Trait Implementations§
impl StructuralPartialEq for TableDef
Auto Trait Implementations§
impl Freeze for TableDef
impl RefUnwindSafe for TableDef
impl Send for TableDef
impl Sync for TableDef
impl Unpin for TableDef
impl UnwindSafe for TableDef
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