pub enum RowEvent {
NewRow {
cols: RowData,
},
DeletedRow {
cols: RowData,
},
UpdatedRow {
before_cols: RowData,
after_cols: RowData,
},
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RowEvent
impl RefUnwindSafe for RowEvent
impl Send for RowEvent
impl Sync for RowEvent
impl Unpin for RowEvent
impl UnwindSafe for RowEvent
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