pub enum DiffEvent {
Started,
OpeningWorkbook {
side: Side,
},
WorkbookOpened {
side: Side,
sheet_count: usize,
},
MatchingSheets,
SheetStarted {
index: usize,
total: usize,
name: String,
},
SheetFinished {
index: usize,
changed_cells: usize,
},
Finished,
}Expand description
An event emitted during a comparison for progress reporting.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiffEvent
impl RefUnwindSafe for DiffEvent
impl Send for DiffEvent
impl Sync for DiffEvent
impl Unpin for DiffEvent
impl UnsafeUnpin for DiffEvent
impl UnwindSafe for DiffEvent
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