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