pub struct CreateStatement {
pub table: String,
pub columns: Vec<ColumnDefinition>,
pub constraints: Vec<TableConstraint>,
pub if_not_exists: bool,
}Fields§
§table: String§columns: Vec<ColumnDefinition>§constraints: Vec<TableConstraint>§if_not_exists: boolTrait Implementations§
Source§impl Clone for CreateStatement
impl Clone for CreateStatement
Source§fn clone(&self) -> CreateStatement
fn clone(&self) -> CreateStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CreateStatement
impl RefUnwindSafe for CreateStatement
impl Send for CreateStatement
impl Sync for CreateStatement
impl Unpin for CreateStatement
impl UnsafeUnpin for CreateStatement
impl UnwindSafe for CreateStatement
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