pub enum AlignmentBoundary {
Global,
Subsequence,
}Expand description
Endpoint semantics for sequence alignment.
Variants§
Global
Align both complete sequences.
Subsequence
Align the complete left query to a contiguous region of the right sequence. Right-side prefix and suffix costs are free.
Trait Implementations§
Source§impl Clone for AlignmentBoundary
impl Clone for AlignmentBoundary
Source§fn clone(&self) -> AlignmentBoundary
fn clone(&self) -> AlignmentBoundary
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 AlignmentBoundary
Source§impl Debug for AlignmentBoundary
impl Debug for AlignmentBoundary
Source§impl Default for AlignmentBoundary
impl Default for AlignmentBoundary
Source§fn default() -> AlignmentBoundary
fn default() -> AlignmentBoundary
Returns the “default value” for a type. Read more
impl Eq for AlignmentBoundary
Source§impl PartialEq for AlignmentBoundary
impl PartialEq for AlignmentBoundary
impl StructuralPartialEq for AlignmentBoundary
Auto Trait Implementations§
impl Freeze for AlignmentBoundary
impl RefUnwindSafe for AlignmentBoundary
impl Send for AlignmentBoundary
impl Sync for AlignmentBoundary
impl Unpin for AlignmentBoundary
impl UnsafeUnpin for AlignmentBoundary
impl UnwindSafe for AlignmentBoundary
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