pub enum MergeOrAlign {
SkipExisting,
NewLeft,
NewRight,
Wide,
}Expand description
Per-step branch tag for --add progressive alignment, mirroring
C disttbfast.c::mergeoralign[] (lines 4188-4302):
SkipExisting(‘n’): both subtrees are existing-only — the alignment is already in place; do nothing.NewLeft(‘1’): only the LEFT subtree contains a “new” sequence.NewRight(‘2’): only the RIGHT subtree contains a “new” sequence.Wide(‘w’): both subtrees contain new sequences — full DP merge.
Variants§
Trait Implementations§
Source§impl Clone for MergeOrAlign
impl Clone for MergeOrAlign
Source§fn clone(&self) -> MergeOrAlign
fn clone(&self) -> MergeOrAlign
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 MergeOrAlign
Auto Trait Implementations§
impl Freeze for MergeOrAlign
impl RefUnwindSafe for MergeOrAlign
impl Send for MergeOrAlign
impl Sync for MergeOrAlign
impl Unpin for MergeOrAlign
impl UnsafeUnpin for MergeOrAlign
impl UnwindSafe for MergeOrAlign
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more