Struct assembly_fdb::core::TableDef
source · pub struct TableDef {
pub columns: Vec<Column>,
pub name: String,
}
Expand description
A list of columns with types and a name
Fields§
§columns: Vec<Column>
The columns of the table in the same order as in the rows
name: String
The name of the table
Trait Implementations§
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