pub enum HabitatCondition {
Intact,
Fragmented,
Degraded,
Restored,
Protected,
Disturbed,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for HabitatCondition
impl Clone for HabitatCondition
Source§fn clone(&self) -> HabitatCondition
fn clone(&self) -> HabitatCondition
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 HabitatCondition
impl Debug for HabitatCondition
Source§impl Display for HabitatCondition
impl Display for HabitatCondition
Source§impl FromStr for HabitatCondition
impl FromStr for HabitatCondition
Source§impl Hash for HabitatCondition
impl Hash for HabitatCondition
Source§impl Ord for HabitatCondition
impl Ord for HabitatCondition
Source§fn cmp(&self, other: &HabitatCondition) -> Ordering
fn cmp(&self, other: &HabitatCondition) -> 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 HabitatCondition
impl PartialEq for HabitatCondition
Source§impl PartialOrd for HabitatCondition
impl PartialOrd for HabitatCondition
impl Eq for HabitatCondition
impl StructuralPartialEq for HabitatCondition
Auto Trait Implementations§
impl Freeze for HabitatCondition
impl RefUnwindSafe for HabitatCondition
impl Send for HabitatCondition
impl Sync for HabitatCondition
impl Unpin for HabitatCondition
impl UnsafeUnpin for HabitatCondition
impl UnwindSafe for HabitatCondition
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