pub enum CycloneKind {
TropicalCyclone,
ExtratropicalCyclone,
SubtropicalCyclone,
Mesocyclone,
PolarLow,
Unknown,
Custom(String),
}Expand description
Stable cyclone-kind vocabulary.
Variants§
TropicalCyclone
Tropical cyclone.
ExtratropicalCyclone
Extratropical cyclone.
SubtropicalCyclone
Subtropical cyclone.
Mesocyclone
Mesocyclone.
PolarLow
Polar low.
Unknown
Unknown cyclone kind.
Custom(String)
Caller-defined cyclone kind.
Trait Implementations§
Source§impl Clone for CycloneKind
impl Clone for CycloneKind
Source§fn clone(&self) -> CycloneKind
fn clone(&self) -> CycloneKind
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 CycloneKind
impl Debug for CycloneKind
Source§impl Display for CycloneKind
impl Display for CycloneKind
Source§impl FromStr for CycloneKind
impl FromStr for CycloneKind
Source§impl Hash for CycloneKind
impl Hash for CycloneKind
Source§impl Ord for CycloneKind
impl Ord for CycloneKind
Source§fn cmp(&self, other: &CycloneKind) -> Ordering
fn cmp(&self, other: &CycloneKind) -> 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 CycloneKind
impl PartialEq for CycloneKind
Source§impl PartialOrd for CycloneKind
impl PartialOrd for CycloneKind
impl Eq for CycloneKind
impl StructuralPartialEq for CycloneKind
Auto Trait Implementations§
impl Freeze for CycloneKind
impl RefUnwindSafe for CycloneKind
impl Send for CycloneKind
impl Sync for CycloneKind
impl Unpin for CycloneKind
impl UnsafeUnpin for CycloneKind
impl UnwindSafe for CycloneKind
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