pub struct CellDiff {
pub row: usize,
pub col: usize,
pub addr: String,
pub kind: CellDiffKind,
pub old: Option<String>,
pub new: Option<String>,
}
Fields§
§row: usize
§col: usize
§addr: String
§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 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