Struct kip_sql::planner::operator::alter_table::add_column::AddColumnOperator
source · pub struct AddColumnOperator {
pub table_name: Arc<String>,
pub if_not_exists: bool,
pub column: ColumnCatalog,
}
Fields§
§table_name: Arc<String>
§if_not_exists: bool
§column: ColumnCatalog
Trait Implementations§
source§impl Clone for AddColumnOperator
impl Clone for AddColumnOperator
source§fn clone(&self) -> AddColumnOperator
fn clone(&self) -> AddColumnOperator
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 AddColumnOperator
impl Debug for AddColumnOperator
source§impl Hash for AddColumnOperator
impl Hash for AddColumnOperator
source§impl PartialEq for AddColumnOperator
impl PartialEq for AddColumnOperator
source§fn eq(&self, other: &AddColumnOperator) -> bool
fn eq(&self, other: &AddColumnOperator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AddColumnOperator
impl StructuralEq for AddColumnOperator
impl StructuralPartialEq for AddColumnOperator
Auto Trait Implementations§
impl RefUnwindSafe for AddColumnOperator
impl Send for AddColumnOperator
impl Sync for AddColumnOperator
impl Unpin for AddColumnOperator
impl UnwindSafe for AddColumnOperator
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.