Struct sql_migration_sim::Table
source · pub struct Table {
pub name: String,
pub columns: Vec<Column>,
}
Expand description
A table in the database
Fields§
§name: String
The name of the table
columns: Vec<Column>
The columns in the table
Auto Trait Implementations§
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
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