Enum TrophicLevel
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§
§impl Clone for TrophicLevel
impl Clone for TrophicLevel
§fn clone(&self) -> TrophicLevel
fn clone(&self) -> TrophicLevel
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 TrophicLevel
impl Debug for TrophicLevel
§impl Display for TrophicLevel
impl Display for TrophicLevel
§impl FromStr for TrophicLevel
impl FromStr for TrophicLevel
§type Err = TrophicLevelParseError
type Err = TrophicLevelParseError
The associated error which can be returned from parsing.
§fn from_str(value: &str) -> Result<TrophicLevel, <TrophicLevel as FromStr>::Err>
fn from_str(value: &str) -> Result<TrophicLevel, <TrophicLevel as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for TrophicLevel
impl Hash for TrophicLevel
§impl Ord for TrophicLevel
impl Ord for TrophicLevel
§impl PartialEq for TrophicLevel
impl PartialEq for TrophicLevel
§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