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§
Source§impl Clone for WeatherFrontKind
impl Clone for WeatherFrontKind
Source§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 moreSource§impl Debug for WeatherFrontKind
impl Debug for WeatherFrontKind
Source§impl Display for WeatherFrontKind
impl Display for WeatherFrontKind
Source§impl FromStr for WeatherFrontKind
impl FromStr for WeatherFrontKind
Source§impl Hash for WeatherFrontKind
impl Hash for WeatherFrontKind
Source§impl Ord for WeatherFrontKind
impl Ord for WeatherFrontKind
Source§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
Source§impl PartialEq for WeatherFrontKind
impl PartialEq for WeatherFrontKind
Source§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