pub struct DiffEntry {
pub row: usize,
pub field: String,
pub source: String,
pub target: String,
}Expand description
One cell-level difference between a source table and a target table.
Fields§
§row: usizeThe zero-based data-row index (excludes the header).
field: StringThe column (field) name.
source: StringThe source value at this cell (empty string if the row/column is absent in source).
target: StringThe target value at this cell (empty string if the row/column is absent in target).
Trait Implementations§
impl Eq for DiffEntry
impl StructuralPartialEq for DiffEntry
Auto Trait Implementations§
impl Freeze for DiffEntry
impl RefUnwindSafe for DiffEntry
impl Send for DiffEntry
impl Sync for DiffEntry
impl Unpin for DiffEntry
impl UnsafeUnpin for DiffEntry
impl UnwindSafe for DiffEntry
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