pub struct CellDelta {
pub row: usize,
pub col: usize,
pub from_text: String,
pub to_text: String,
}Expand description
A single modified cell.
Fields§
§row: usize0-based row.
col: usize0-based column.
from_text: StringCell text before.
to_text: StringCell text after.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CellDelta
impl RefUnwindSafe for CellDelta
impl Send for CellDelta
impl Sync for CellDelta
impl Unpin for CellDelta
impl UnsafeUnpin for CellDelta
impl UnwindSafe for CellDelta
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