pub struct CellDiff {
pub row: usize,
pub col: usize,
pub addr: String,
pub kind: CellDiffKind,
pub old: Option<String>,
pub new: Option<String>,
}Expand description
A single changed cell.
Fields§
§row: usize1-based row index.
col: usize1-based column index.
addr: StringExcel A1 address (e.g. "XFD1048576").
kind: CellDiffKind§old: Option<String>§new: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CellDiff
impl RefUnwindSafe for CellDiff
impl Send for CellDiff
impl Sync for CellDiff
impl Unpin for CellDiff
impl UnsafeUnpin for CellDiff
impl UnwindSafe for CellDiff
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