pub enum SheetMatchingMode {
ExactNameOnly,
ExactNameThenConservativeRename,
ExactNameThenIndex,
}Expand description
How sheets are paired between the two workbooks.
Variants§
ExactNameOnly
Pair only sheets with the same name; others are Added/Removed.
ExactNameThenConservativeRename
Exact name first; then detect a rename when exactly one unmatched old and one unmatched new sheet remain and confidence is sufficient. Default.
ExactNameThenIndex
Exact name first; then try pairing by sheet index.
Trait Implementations§
Source§impl Clone for SheetMatchingMode
impl Clone for SheetMatchingMode
Source§fn clone(&self) -> SheetMatchingMode
fn clone(&self) -> SheetMatchingMode
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 moreimpl Copy for SheetMatchingMode
Source§impl Debug for SheetMatchingMode
impl Debug for SheetMatchingMode
Source§impl Default for SheetMatchingMode
impl Default for SheetMatchingMode
Source§fn default() -> SheetMatchingMode
fn default() -> SheetMatchingMode
Returns the “default value” for a type. Read more
impl Eq for SheetMatchingMode
Source§impl PartialEq for SheetMatchingMode
impl PartialEq for SheetMatchingMode
impl StructuralPartialEq for SheetMatchingMode
Auto Trait Implementations§
impl Freeze for SheetMatchingMode
impl RefUnwindSafe for SheetMatchingMode
impl Send for SheetMatchingMode
impl Sync for SheetMatchingMode
impl Unpin for SheetMatchingMode
impl UnsafeUnpin for SheetMatchingMode
impl UnwindSafe for SheetMatchingMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.