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