pub enum TrophicLevel {
PrimaryProducer,
PrimaryConsumer,
SecondaryConsumer,
TertiaryConsumer,
QuaternaryConsumer,
Decomposer,
Detritivore,
Omnivore,
Unknown,
Custom(String),
}Variants§
PrimaryProducer
PrimaryConsumer
SecondaryConsumer
TertiaryConsumer
QuaternaryConsumer
Decomposer
Detritivore
Omnivore
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for TrophicLevel
impl Clone for TrophicLevel
Source§fn clone(&self) -> TrophicLevel
fn clone(&self) -> TrophicLevel
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 TrophicLevel
impl Debug for TrophicLevel
Source§impl Display for TrophicLevel
impl Display for TrophicLevel
Source§impl FromStr for TrophicLevel
impl FromStr for TrophicLevel
Source§impl Hash for TrophicLevel
impl Hash for TrophicLevel
Source§impl Ord for TrophicLevel
impl Ord for TrophicLevel
Source§fn cmp(&self, other: &TrophicLevel) -> Ordering
fn cmp(&self, other: &TrophicLevel) -> 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 TrophicLevel
impl PartialEq for TrophicLevel
Source§fn eq(&self, other: &TrophicLevel) -> bool
fn eq(&self, other: &TrophicLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TrophicLevel
impl PartialOrd for TrophicLevel
impl Eq for TrophicLevel
impl StructuralPartialEq for TrophicLevel
Auto Trait Implementations§
impl Freeze for TrophicLevel
impl RefUnwindSafe for TrophicLevel
impl Send for TrophicLevel
impl Sync for TrophicLevel
impl Unpin for TrophicLevel
impl UnsafeUnpin for TrophicLevel
impl UnwindSafe for TrophicLevel
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