pub enum ChangeEventKind {
Insert,
Update,
Delete,
Replace,
Upsert,
Expire,
Unknown,
}Expand description
Change event kind labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ChangeEventKind
impl Clone for ChangeEventKind
Source§fn clone(&self) -> ChangeEventKind
fn clone(&self) -> ChangeEventKind
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 ChangeEventKind
impl Debug for ChangeEventKind
Source§impl Default for ChangeEventKind
impl Default for ChangeEventKind
Source§fn default() -> ChangeEventKind
fn default() -> ChangeEventKind
Returns the “default value” for a type. Read more
Source§impl Display for ChangeEventKind
impl Display for ChangeEventKind
Source§impl Hash for ChangeEventKind
impl Hash for ChangeEventKind
Source§impl Ord for ChangeEventKind
impl Ord for ChangeEventKind
Source§fn cmp(&self, other: &ChangeEventKind) -> Ordering
fn cmp(&self, other: &ChangeEventKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ChangeEventKind
impl PartialEq for ChangeEventKind
Source§fn eq(&self, other: &ChangeEventKind) -> bool
fn eq(&self, other: &ChangeEventKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ChangeEventKind
impl PartialOrd for ChangeEventKind
impl Copy for ChangeEventKind
impl Eq for ChangeEventKind
impl StructuralPartialEq for ChangeEventKind
Auto Trait Implementations§
impl Freeze for ChangeEventKind
impl RefUnwindSafe for ChangeEventKind
impl Send for ChangeEventKind
impl Sync for ChangeEventKind
impl Unpin for ChangeEventKind
impl UnsafeUnpin for ChangeEventKind
impl UnwindSafe for ChangeEventKind
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