#[non_exhaustive]pub struct AlignmentSummary {
pub inserted_rows: usize,
pub removed_rows: usize,
pub matched_rows: usize,
pub confidence: MatchConfidence,
}Expand description
Summary of row-alignment decisions for a sheet pair (RFC-011).
None on SheetDiff.alignment_summary when mode is Positional.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.inserted_rows: usize§removed_rows: usize§matched_rows: usize§confidence: MatchConfidenceTrait Implementations§
Source§impl Clone for AlignmentSummary
impl Clone for AlignmentSummary
Source§fn clone(&self) -> AlignmentSummary
fn clone(&self) -> AlignmentSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AlignmentSummary
impl Debug for AlignmentSummary
Source§impl PartialEq for AlignmentSummary
impl PartialEq for AlignmentSummary
impl StructuralPartialEq for AlignmentSummary
Auto Trait Implementations§
impl Freeze for AlignmentSummary
impl RefUnwindSafe for AlignmentSummary
impl Send for AlignmentSummary
impl Sync for AlignmentSummary
impl Unpin for AlignmentSummary
impl UnsafeUnpin for AlignmentSummary
impl UnwindSafe for AlignmentSummary
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