Struct kip_sql::planner::operator::create_table::CreateTableOperator
source · pub struct CreateTableOperator {
pub table_name: Arc<String>,
pub columns: Vec<ColumnCatalog>,
pub if_not_exists: bool,
}
Fields§
§table_name: Arc<String>
Table name to insert to
columns: Vec<ColumnCatalog>
List of columns of the table
if_not_exists: bool
Trait Implementations§
source§impl Clone for CreateTableOperator
impl Clone for CreateTableOperator
source§fn clone(&self) -> CreateTableOperator
fn clone(&self) -> CreateTableOperator
Returns a copy 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 moresource§impl Debug for CreateTableOperator
impl Debug for CreateTableOperator
source§impl Hash for CreateTableOperator
impl Hash for CreateTableOperator
source§impl PartialEq for CreateTableOperator
impl PartialEq for CreateTableOperator
source§fn eq(&self, other: &CreateTableOperator) -> bool
fn eq(&self, other: &CreateTableOperator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CreateTableOperator
impl StructuralEq for CreateTableOperator
impl StructuralPartialEq for CreateTableOperator
Auto Trait Implementations§
impl RefUnwindSafe for CreateTableOperator
impl Send for CreateTableOperator
impl Sync for CreateTableOperator
impl Unpin for CreateTableOperator
impl UnwindSafe for CreateTableOperator
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.