pub enum SqlLogOperation {
Select,
Insert,
Update,
Delete,
Recover,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SqlLogOperation
impl Clone for SqlLogOperation
Source§fn clone(&self) -> SqlLogOperation
fn clone(&self) -> SqlLogOperation
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 SqlLogOperation
impl Debug for SqlLogOperation
Source§impl PartialEq for SqlLogOperation
impl PartialEq for SqlLogOperation
impl Copy for SqlLogOperation
impl Eq for SqlLogOperation
impl StructuralPartialEq for SqlLogOperation
Auto Trait Implementations§
impl Freeze for SqlLogOperation
impl RefUnwindSafe for SqlLogOperation
impl Send for SqlLogOperation
impl Sync for SqlLogOperation
impl Unpin for SqlLogOperation
impl UnsafeUnpin for SqlLogOperation
impl UnwindSafe for SqlLogOperation
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