pub struct CsvDiff {
pub operations: Vec<CsvDiffOp>,
pub stats: CsvDiffStats,
}Expand description
Result of CSV diff
Fields§
§operations: Vec<CsvDiffOp>Operations to transform source into target
stats: CsvDiffStatsStatistics about the diff
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CsvDiff
impl RefUnwindSafe for CsvDiff
impl Send for CsvDiff
impl Sync for CsvDiff
impl Unpin for CsvDiff
impl UnwindSafe for CsvDiff
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