pub enum DiversityIndexKind {
SpeciesRichness,
Shannon,
Simpson,
Evenness,
BetaDiversity,
PhylogeneticDiversity,
Unknown,
Custom(String),
}Variants§
SpeciesRichness
Shannon
Simpson
Evenness
BetaDiversity
PhylogeneticDiversity
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for DiversityIndexKind
impl Clone for DiversityIndexKind
Source§fn clone(&self) -> DiversityIndexKind
fn clone(&self) -> DiversityIndexKind
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 moreSource§impl Debug for DiversityIndexKind
impl Debug for DiversityIndexKind
Source§impl Display for DiversityIndexKind
impl Display for DiversityIndexKind
Source§impl FromStr for DiversityIndexKind
impl FromStr for DiversityIndexKind
Source§impl Hash for DiversityIndexKind
impl Hash for DiversityIndexKind
Source§impl Ord for DiversityIndexKind
impl Ord for DiversityIndexKind
Source§fn cmp(&self, other: &DiversityIndexKind) -> Ordering
fn cmp(&self, other: &DiversityIndexKind) -> Ordering
1.21.0 · 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 DiversityIndexKind
impl PartialEq for DiversityIndexKind
Source§impl PartialOrd for DiversityIndexKind
impl PartialOrd for DiversityIndexKind
impl Eq for DiversityIndexKind
impl StructuralPartialEq for DiversityIndexKind
Auto Trait Implementations§
impl Freeze for DiversityIndexKind
impl RefUnwindSafe for DiversityIndexKind
impl Send for DiversityIndexKind
impl Sync for DiversityIndexKind
impl Unpin for DiversityIndexKind
impl UnsafeUnpin for DiversityIndexKind
impl UnwindSafe for DiversityIndexKind
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