pub enum SqlOperation {
Select,
Insert,
Update,
Delete,
Upsert,
}Expand description
The type of SQL operation.
Variants§
Trait Implementations§
Source§impl Clone for SqlOperation
impl Clone for SqlOperation
Source§fn clone(&self) -> SqlOperation
fn clone(&self) -> SqlOperation
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 moreSource§impl Debug for SqlOperation
impl Debug for SqlOperation
Source§impl PartialEq for SqlOperation
impl PartialEq for SqlOperation
impl Copy for SqlOperation
impl Eq for SqlOperation
impl StructuralPartialEq for SqlOperation
Auto Trait Implementations§
impl Freeze for SqlOperation
impl RefUnwindSafe for SqlOperation
impl Send for SqlOperation
impl Sync for SqlOperation
impl Unpin for SqlOperation
impl UnwindSafe for SqlOperation
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.