pub enum DataServiceOperation {
Query,
Insert,
Update,
Delete,
Recover,
Batch,
Schema,
}Variants§
Trait Implementations§
Source§impl Clone for DataServiceOperation
impl Clone for DataServiceOperation
Source§fn clone(&self) -> DataServiceOperation
fn clone(&self) -> DataServiceOperation
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 DataServiceOperation
Source§impl Debug for DataServiceOperation
impl Debug for DataServiceOperation
impl Eq for DataServiceOperation
Source§impl PartialEq for DataServiceOperation
impl PartialEq for DataServiceOperation
Source§fn eq(&self, other: &DataServiceOperation) -> bool
fn eq(&self, other: &DataServiceOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataServiceOperation
Auto Trait Implementations§
impl Freeze for DataServiceOperation
impl RefUnwindSafe for DataServiceOperation
impl Send for DataServiceOperation
impl Sync for DataServiceOperation
impl Unpin for DataServiceOperation
impl UnsafeUnpin for DataServiceOperation
impl UnwindSafe for DataServiceOperation
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