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