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