pub enum SqlWriteKind {
Delete,
Insert,
InsertSelect,
Update,
}Expand description
SqlWriteKind
Variants§
Trait Implementations§
Source§impl Clone for SqlWriteKind
impl Clone for SqlWriteKind
Source§fn clone(&self) -> SqlWriteKind
fn clone(&self) -> SqlWriteKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SqlWriteKind
Source§impl Debug for SqlWriteKind
impl Debug for SqlWriteKind
impl Eq for SqlWriteKind
Source§impl PartialEq for SqlWriteKind
impl PartialEq for SqlWriteKind
Source§fn eq(&self, other: &SqlWriteKind) -> bool
fn eq(&self, other: &SqlWriteKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlWriteKind
Auto Trait Implementations§
impl Freeze for SqlWriteKind
impl RefUnwindSafe for SqlWriteKind
impl Send for SqlWriteKind
impl Sync for SqlWriteKind
impl Unpin for SqlWriteKind
impl UnsafeUnpin for SqlWriteKind
impl UnwindSafe for SqlWriteKind
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