pub enum AlignmentMode {
Positional,
RowKey {
columns: Vec<u32>,
},
RowSignature {
sample_columns: Option<Vec<u32>>,
},
HeaderColumn,
}Expand description
Row/column alignment mode (RFC-011).
Variants§
Positional
Positional (row N on old vs row N on new). Default.
RowKey
Match rows by the values in the specified key columns (1-based). Reduces cascades after row insertion/deletion.
RowSignature
Match rows by a hash of selected cell values (content similarity).
sample_columns limits which columns contribute to the signature;
None means all columns.
HeaderColumn
Match rows using the first row as a column-header identity.
Trait Implementations§
Source§impl Clone for AlignmentMode
impl Clone for AlignmentMode
Source§fn clone(&self) -> AlignmentMode
fn clone(&self) -> AlignmentMode
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 AlignmentMode
impl Debug for AlignmentMode
Source§impl Default for AlignmentMode
impl Default for AlignmentMode
Source§fn default() -> AlignmentMode
fn default() -> AlignmentMode
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AlignmentMode
impl RefUnwindSafe for AlignmentMode
impl Send for AlignmentMode
impl Sync for AlignmentMode
impl Unpin for AlignmentMode
impl UnsafeUnpin for AlignmentMode
impl UnwindSafe for AlignmentMode
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