pub enum QueryOperation {
Select,
Insert,
Update,
Delete,
}Expand description
Types of SQL operations supported
Variants§
Trait Implementations§
Source§impl Clone for QueryOperation
impl Clone for QueryOperation
Source§fn clone(&self) -> QueryOperation
fn clone(&self) -> QueryOperation
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 QueryOperation
impl Debug for QueryOperation
Source§impl PartialEq for QueryOperation
impl PartialEq for QueryOperation
impl StructuralPartialEq for QueryOperation
Auto Trait Implementations§
impl Freeze for QueryOperation
impl RefUnwindSafe for QueryOperation
impl Send for QueryOperation
impl Sync for QueryOperation
impl Unpin for QueryOperation
impl UnwindSafe for QueryOperation
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