pub enum HabitatKind {
Show 14 variants
Forest,
Grassland,
Desert,
Wetland,
River,
Lake,
Ocean,
Reef,
Cave,
Soil,
Urban,
Agricultural,
Unknown,
Custom(String),
}Variants§
Forest
Grassland
Desert
Wetland
River
Lake
Ocean
Reef
Cave
Soil
Urban
Agricultural
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for HabitatKind
impl Clone for HabitatKind
Source§fn clone(&self) -> HabitatKind
fn clone(&self) -> HabitatKind
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 moreSource§impl Debug for HabitatKind
impl Debug for HabitatKind
Source§impl Display for HabitatKind
impl Display for HabitatKind
Source§impl FromStr for HabitatKind
impl FromStr for HabitatKind
Source§impl Hash for HabitatKind
impl Hash for HabitatKind
Source§impl Ord for HabitatKind
impl Ord for HabitatKind
Source§fn cmp(&self, other: &HabitatKind) -> Ordering
fn cmp(&self, other: &HabitatKind) -> Ordering
1.21.0 · 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 HabitatKind
impl PartialEq for HabitatKind
Source§impl PartialOrd for HabitatKind
impl PartialOrd for HabitatKind
impl Eq for HabitatKind
impl StructuralPartialEq for HabitatKind
Auto Trait Implementations§
impl Freeze for HabitatKind
impl RefUnwindSafe for HabitatKind
impl Send for HabitatKind
impl Sync for HabitatKind
impl Unpin for HabitatKind
impl UnsafeUnpin for HabitatKind
impl UnwindSafe for HabitatKind
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