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