pub enum CatalogEventOp {
PutRow {
table: Symbol,
key: Symbol,
},
DeleteRow {
table: Symbol,
key: Symbol,
},
Sequence {
name: Symbol,
next: u64,
},
}Expand description
The committed operation recorded by a CatalogEvent.
Variants§
PutRow
A row was inserted or replaced.
DeleteRow
A row was deleted.
Sequence
A sequence advanced to a new value.
Trait Implementations§
Source§impl Clone for CatalogEventOp
impl Clone for CatalogEventOp
Source§fn clone(&self) -> CatalogEventOp
fn clone(&self) -> CatalogEventOp
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 CatalogEventOp
impl Debug for CatalogEventOp
impl Eq for CatalogEventOp
Source§impl PartialEq for CatalogEventOp
impl PartialEq for CatalogEventOp
Source§fn eq(&self, other: &CatalogEventOp) -> bool
fn eq(&self, other: &CatalogEventOp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogEventOp
Auto Trait Implementations§
impl Freeze for CatalogEventOp
impl RefUnwindSafe for CatalogEventOp
impl Send for CatalogEventOp
impl Sync for CatalogEventOp
impl Unpin for CatalogEventOp
impl UnsafeUnpin for CatalogEventOp
impl UnwindSafe for CatalogEventOp
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