pub struct Diff {
pub sheet_name: String,
pub row: i32,
pub column: i32,
pub value1: Cell,
pub value2: Cell,
pub reason: String,
}Fields§
§sheet_name: String§row: i32§column: i32§value1: Cell§value2: Cell§reason: StringAuto Trait Implementations§
impl RefUnwindSafe for Diff
impl Send for Diff
impl Sync for Diff
impl Unpin for Diff
impl UnwindSafe for Diff
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