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