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 (const: unstable) · 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
Source§fn eq(&self, other: &SqlLogOperation) -> bool
fn eq(&self, other: &SqlLogOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.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