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