pub struct CellChange {
pub column: String,
pub old_value: Option<String>,
pub new_value: Option<String>,
}Expand description
Change to a single cell
Fields§
§column: StringColumn name
old_value: Option<String>Old value (None if column was added)
new_value: Option<String>New value (None if column was removed)
Trait Implementations§
Source§impl Clone for CellChange
impl Clone for CellChange
Source§fn clone(&self) -> CellChange
fn clone(&self) -> CellChange
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 moreSource§impl Debug for CellChange
impl Debug for CellChange
Source§impl PartialEq for CellChange
impl PartialEq for CellChange
impl Eq for CellChange
impl StructuralPartialEq for CellChange
Auto Trait Implementations§
impl Freeze for CellChange
impl RefUnwindSafe for CellChange
impl Send for CellChange
impl Sync for CellChange
impl Unpin for CellChange
impl UnwindSafe for CellChange
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