pub enum MutationEvent {
Insert {
table_name: String,
new_row: StoredRow,
},
Update {
table_name: String,
old_row: StoredRow,
new_row: StoredRow,
},
Delete {
table_name: String,
old_row: StoredRow,
},
}Variants§
Trait Implementations§
Source§impl Clone for MutationEvent
impl Clone for MutationEvent
Source§fn clone(&self) -> MutationEvent
fn clone(&self) -> MutationEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MutationEvent
impl RefUnwindSafe for MutationEvent
impl Send for MutationEvent
impl Sync for MutationEvent
impl Unpin for MutationEvent
impl UnsafeUnpin for MutationEvent
impl UnwindSafe for MutationEvent
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