pub struct MultiScanComparison {
pub points: Vec<MultiScanPoint>,
pub sequential_deltas: Vec<ScanComparison>,
pub total_delta: SummaryDelta,
pub file_matrix: Vec<MultiFileDelta>,
}Fields§
§points: Vec<MultiScanPoint>§sequential_deltas: Vec<ScanComparison>One ScanComparison per consecutive pair (length = N − 1).
total_delta: SummaryDeltaOverall delta from the first scan to the last scan.
file_matrix: Vec<MultiFileDelta>All files × all scan points, sorted modified → added → removed → unchanged.
Trait Implementations§
Source§impl Debug for MultiScanComparison
impl Debug for MultiScanComparison
Auto Trait Implementations§
impl Freeze for MultiScanComparison
impl RefUnwindSafe for MultiScanComparison
impl Send for MultiScanComparison
impl Sync for MultiScanComparison
impl Unpin for MultiScanComparison
impl UnsafeUnpin for MultiScanComparison
impl UnwindSafe for MultiScanComparison
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