pub struct CreateTableOption {
pub table_name: Option<String>,
pub column_info: Vec<Option<ColumnInfoOption>>,
}Expand description
A variant of CreateTable with options for table name and column definitions.
Fields§
§table_name: Option<String>§column_info: Vec<Option<ColumnInfoOption>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CreateTableOption
impl RefUnwindSafe for CreateTableOption
impl Send for CreateTableOption
impl Sync for CreateTableOption
impl Unpin for CreateTableOption
impl UnwindSafe for CreateTableOption
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