Enum AlignmentKind
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§
§impl Clone for AlignmentKind
impl Clone for AlignmentKind
§fn clone(&self) -> AlignmentKind
fn clone(&self) -> AlignmentKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for AlignmentKind
impl Debug for AlignmentKind
§impl Display for AlignmentKind
impl Display for AlignmentKind
§impl FromStr for AlignmentKind
impl FromStr for AlignmentKind
§type Err = Infallible
type Err = Infallible
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<AlignmentKind, <AlignmentKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AlignmentKind, <AlignmentKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for AlignmentKind
impl Hash for AlignmentKind
§impl Ord for AlignmentKind
impl Ord for AlignmentKind
§impl PartialEq for AlignmentKind
impl PartialEq for AlignmentKind
§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