pub struct CreateTable {
pub table_name: String,
pub column_info: Vec<ColumnInfo>,
}Expand description
Represents the structure of a SQL CREATE TABLE statement.
Fields§
§table_name: StringTable name
column_info: Vec<ColumnInfo>Columns info
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CreateTable
impl RefUnwindSafe for CreateTable
impl Send for CreateTable
impl Sync for CreateTable
impl Unpin for CreateTable
impl UnwindSafe for CreateTable
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