pub enum EcosystemKind {
Show 13 variants
Terrestrial,
Aquatic,
Marine,
Freshwater,
Forest,
Grassland,
Desert,
Tundra,
Wetland,
Urban,
Agricultural,
Unknown,
Custom(String),
}Variants§
Terrestrial
Aquatic
Marine
Freshwater
Forest
Grassland
Desert
Tundra
Wetland
Urban
Agricultural
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for EcosystemKind
impl Clone for EcosystemKind
Source§fn clone(&self) -> EcosystemKind
fn clone(&self) -> EcosystemKind
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 EcosystemKind
impl Debug for EcosystemKind
Source§impl Display for EcosystemKind
impl Display for EcosystemKind
Source§impl FromStr for EcosystemKind
impl FromStr for EcosystemKind
Source§impl Hash for EcosystemKind
impl Hash for EcosystemKind
Source§impl Ord for EcosystemKind
impl Ord for EcosystemKind
Source§fn cmp(&self, other: &EcosystemKind) -> Ordering
fn cmp(&self, other: &EcosystemKind) -> 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 EcosystemKind
impl PartialEq for EcosystemKind
Source§fn eq(&self, other: &EcosystemKind) -> bool
fn eq(&self, other: &EcosystemKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EcosystemKind
impl PartialOrd for EcosystemKind
impl Eq for EcosystemKind
impl StructuralPartialEq for EcosystemKind
Auto Trait Implementations§
impl Freeze for EcosystemKind
impl RefUnwindSafe for EcosystemKind
impl Send for EcosystemKind
impl Sync for EcosystemKind
impl Unpin for EcosystemKind
impl UnsafeUnpin for EcosystemKind
impl UnwindSafe for EcosystemKind
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