pub struct CreateTableStatement {
pub if_not_exists: bool,
pub temporary: bool,
pub name: QualifiedName,
pub body: CreateTableBody,
pub without_rowid: bool,
pub strict: bool,
}Expand description
A CREATE TABLE statement.
Fields§
§if_not_exists: boolIF NOT EXISTS flag.
temporary: boolCREATE TEMP TABLE.
name: QualifiedNameTable name.
body: CreateTableBodyTable definition body.
without_rowid: boolWITHOUT ROWID flag.
strict: boolSTRICT flag (SQLite 3.37+).
Trait Implementations§
Source§impl Clone for CreateTableStatement
impl Clone for CreateTableStatement
Source§fn clone(&self) -> CreateTableStatement
fn clone(&self) -> CreateTableStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateTableStatement
impl Debug for CreateTableStatement
Source§impl Display for CreateTableStatement
impl Display for CreateTableStatement
Source§impl PartialEq for CreateTableStatement
impl PartialEq for CreateTableStatement
impl StructuralPartialEq for CreateTableStatement
Auto Trait Implementations§
impl Freeze for CreateTableStatement
impl RefUnwindSafe for CreateTableStatement
impl Send for CreateTableStatement
impl Sync for CreateTableStatement
impl Unpin for CreateTableStatement
impl UnsafeUnpin for CreateTableStatement
impl UnwindSafe for CreateTableStatement
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