pub enum AlignmentKind {
Pairwise,
Multiple,
Local,
Global,
SemiGlobal,
Unknown,
Custom(String),
}Expand description
A descriptive alignment kind.
Variants§
Pairwise
Pairwise alignment.
Multiple
Multiple sequence alignment.
Local
Local alignment.
Global
Global alignment.
SemiGlobal
Semi-global alignment.
Unknown
Unknown alignment kind.
Custom(String)
Domain-specific alignment kind.
Trait Implementations§
Source§impl Clone for AlignmentKind
impl Clone for AlignmentKind
Source§fn clone(&self) -> AlignmentKind
fn clone(&self) -> AlignmentKind
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 AlignmentKind
impl Debug for AlignmentKind
Source§impl Display for AlignmentKind
impl Display for AlignmentKind
Source§impl FromStr for AlignmentKind
impl FromStr for AlignmentKind
Source§impl Hash for AlignmentKind
impl Hash for AlignmentKind
Source§impl Ord for AlignmentKind
impl Ord for AlignmentKind
Source§fn cmp(&self, other: &AlignmentKind) -> Ordering
fn cmp(&self, other: &AlignmentKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AlignmentKind
impl PartialEq for AlignmentKind
Source§fn eq(&self, other: &AlignmentKind) -> bool
fn eq(&self, other: &AlignmentKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AlignmentKind
impl PartialOrd for AlignmentKind
impl Eq for AlignmentKind
impl StructuralPartialEq for AlignmentKind
Auto Trait Implementations§
impl Freeze for AlignmentKind
impl RefUnwindSafe for AlignmentKind
impl Send for AlignmentKind
impl Sync for AlignmentKind
impl Unpin for AlignmentKind
impl UnsafeUnpin for AlignmentKind
impl UnwindSafe for AlignmentKind
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