[][src]Enum hodgepodge::science::TaxonomicRank

pub enum TaxonomicRank {
    Domain,
    Kingdom,
    Phylum,
    Class,
    Order,
    Family,
    Genus,
    Species,
}

The levels of biological classification

Variants

Domain

Domain is the top classification level

Kingdom

Kingdom is the level just below Domain

Phylum

Phylum is the level just below Kingdom

Class

Class is the level just below Phylum

Order

Order is the level just below Class

Family

Family is the level just below Order

Genus

Genus is the level just below Family

Species

Species is the basic unit of classification

Trait Implementations

impl Clone for TaxonomicRank[src]

impl Copy for TaxonomicRank[src]

impl Debug for TaxonomicRank[src]

impl EnumCount for TaxonomicRank[src]

impl IntoEnumIterator for TaxonomicRank[src]

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, 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.