[][src]Enum aa_similarity::AminoAcid

pub enum AminoAcid {
    Alanine,
    Arginine,
    Asparagine,
    AsparticAcid,
    Cysteine,
    GlutamicAcid,
    Glutamine,
    Glycine,
    Histidine,
    Isoleucine,
    Leucine,
    Lysine,
    Methionine,
    Phenylalanine,
    Proline,
    Serine,
    Threonine,
    Tryptophan,
    Tyrosine,
    Valine,
}

One variant for each amino acid

let ala: AminoAcid = "Ala".parse().unwrap();
assert_eq!(ala, AminoAcid::Alanine);

let tyr: AminoAcid = AminoAcid::try_from('Y').unwrap();
assert_eq!(tyr, AminoAcid::Tyrosine);

Variants

Alanine
Arginine
Asparagine
AsparticAcid
Cysteine
GlutamicAcid
Glutamine
Glycine
Histidine
Isoleucine
Leucine
Lysine
Methionine
Phenylalanine
Proline
Serine
Threonine
Tryptophan
Tyrosine
Valine

Trait Implementations

impl Clone for AminoAcid[src]

impl Code for AminoAcid[src]

impl Debug for AminoAcid[src]

impl Display for AminoAcid[src]

impl Eq for AminoAcid[src]

impl FromStr for AminoAcid[src]

type Err = ErrorKind

The associated error which can be returned from parsing.

impl Ord for AminoAcid[src]

impl PartialEq<AminoAcid> for AminoAcid[src]

impl PartialOrd<AminoAcid> for AminoAcid[src]

impl StructuralEq for AminoAcid[src]

impl StructuralPartialEq for AminoAcid[src]

impl TryFrom<char> for AminoAcid[src]

type Error = ErrorKind

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.