pub struct TableDelta {
pub cells: Vec<CellDelta>,
}Expand description
Table change (one or more cells modified).
Fields§
§cells: Vec<CellDelta>Modified cells.
Trait Implementations§
Source§impl Clone for TableDelta
impl Clone for TableDelta
Source§fn clone(&self) -> TableDelta
fn clone(&self) -> TableDelta
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 TableDelta
impl Debug for TableDelta
Auto Trait Implementations§
impl Freeze for TableDelta
impl RefUnwindSafe for TableDelta
impl Send for TableDelta
impl Sync for TableDelta
impl Unpin for TableDelta
impl UnsafeUnpin for TableDelta
impl UnwindSafe for TableDelta
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