pub enum PrecipitationIntensity {
Light,
Moderate,
Heavy,
Extreme,
Unknown,
Custom(String),
}Expand description
Stable precipitation intensity vocabulary.
Variants§
Light
Light precipitation.
Moderate
Moderate precipitation.
Heavy
Heavy precipitation.
Extreme
Extreme precipitation.
Unknown
Unknown intensity.
Custom(String)
Caller-defined intensity.
Trait Implementations§
Source§impl Clone for PrecipitationIntensity
impl Clone for PrecipitationIntensity
Source§fn clone(&self) -> PrecipitationIntensity
fn clone(&self) -> PrecipitationIntensity
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 PrecipitationIntensity
impl Debug for PrecipitationIntensity
Source§impl Display for PrecipitationIntensity
impl Display for PrecipitationIntensity
Source§impl FromStr for PrecipitationIntensity
impl FromStr for PrecipitationIntensity
Source§impl Hash for PrecipitationIntensity
impl Hash for PrecipitationIntensity
Source§impl Ord for PrecipitationIntensity
impl Ord for PrecipitationIntensity
Source§fn cmp(&self, other: &PrecipitationIntensity) -> Ordering
fn cmp(&self, other: &PrecipitationIntensity) -> 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 PrecipitationIntensity
impl PartialEq for PrecipitationIntensity
Source§impl PartialOrd for PrecipitationIntensity
impl PartialOrd for PrecipitationIntensity
impl Eq for PrecipitationIntensity
impl StructuralPartialEq for PrecipitationIntensity
Auto Trait Implementations§
impl Freeze for PrecipitationIntensity
impl RefUnwindSafe for PrecipitationIntensity
impl Send for PrecipitationIntensity
impl Sync for PrecipitationIntensity
impl Unpin for PrecipitationIntensity
impl UnsafeUnpin for PrecipitationIntensity
impl UnwindSafe for PrecipitationIntensity
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