#[non_exhaustive]pub enum ChangeVerb {
Replace,
Append,
Delete,
}Expand description
Kind of storage mutation that produced a change event.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for ChangeVerb
impl Clone for ChangeVerb
Source§fn clone(&self) -> ChangeVerb
fn clone(&self) -> ChangeVerb
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 ChangeVerb
Source§impl Debug for ChangeVerb
impl Debug for ChangeVerb
impl Eq for ChangeVerb
Source§impl PartialEq for ChangeVerb
impl PartialEq for ChangeVerb
Source§fn eq(&self, other: &ChangeVerb) -> bool
fn eq(&self, other: &ChangeVerb) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChangeVerb
Auto Trait Implementations§
impl Freeze for ChangeVerb
impl RefUnwindSafe for ChangeVerb
impl Send for ChangeVerb
impl Sync for ChangeVerb
impl Unpin for ChangeVerb
impl UnsafeUnpin for ChangeVerb
impl UnwindSafe for ChangeVerb
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