Enum WeatherFrontKind
pub enum WeatherFrontKind {
Cold,
Warm,
Stationary,
Occluded,
Dryline,
SquallLine,
Unknown,
Custom(String),
}Expand description
Stable weather-front kind vocabulary.
Variants§
Cold
Cold front.
Warm
Warm front.
Stationary
Stationary front.
Occluded
Occluded front.
Dryline
Dryline.
SquallLine
Squall line.
Unknown
Unknown front kind.
Custom(String)
Caller-defined front kind.
Trait Implementations§
§impl Clone for WeatherFrontKind
impl Clone for WeatherFrontKind
§fn clone(&self) -> WeatherFrontKind
fn clone(&self) -> WeatherFrontKind
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 WeatherFrontKind
impl Debug for WeatherFrontKind
§impl Display for WeatherFrontKind
impl Display for WeatherFrontKind
§impl FromStr for WeatherFrontKind
impl FromStr for WeatherFrontKind
§type Err = WeatherFrontKindParseError
type Err = WeatherFrontKindParseError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<WeatherFrontKind, <WeatherFrontKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<WeatherFrontKind, <WeatherFrontKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for WeatherFrontKind
impl Hash for WeatherFrontKind
§impl Ord for WeatherFrontKind
impl Ord for WeatherFrontKind
§fn cmp(&self, other: &WeatherFrontKind) -> Ordering
fn cmp(&self, other: &WeatherFrontKind) -> 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
§impl PartialEq for WeatherFrontKind
impl PartialEq for WeatherFrontKind
§impl PartialOrd for WeatherFrontKind
impl PartialOrd for WeatherFrontKind
impl Eq for WeatherFrontKind
impl StructuralPartialEq for WeatherFrontKind
Auto Trait Implementations§
impl Freeze for WeatherFrontKind
impl RefUnwindSafe for WeatherFrontKind
impl Send for WeatherFrontKind
impl Sync for WeatherFrontKind
impl Unpin for WeatherFrontKind
impl UnsafeUnpin for WeatherFrontKind
impl UnwindSafe for WeatherFrontKind
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