Enum PopulationTrend
pub enum PopulationTrend {
Increasing,
Decreasing,
Stable,
Fluctuating,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
§impl Clone for PopulationTrend
impl Clone for PopulationTrend
§fn clone(&self) -> PopulationTrend
fn clone(&self) -> PopulationTrend
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 more§impl Debug for PopulationTrend
impl Debug for PopulationTrend
§impl Display for PopulationTrend
impl Display for PopulationTrend
§impl FromStr for PopulationTrend
impl FromStr for PopulationTrend
§type Err = PopulationTrendParseError
type Err = PopulationTrendParseError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<PopulationTrend, <PopulationTrend as FromStr>::Err>
fn from_str( value: &str, ) -> Result<PopulationTrend, <PopulationTrend as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for PopulationTrend
impl Hash for PopulationTrend
§impl Ord for PopulationTrend
impl Ord for PopulationTrend
§impl PartialEq for PopulationTrend
impl PartialEq for PopulationTrend
§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