pub enum PressureSystemKind {
High,
Low,
Ridge,
Trough,
Cyclone,
Anticyclone,
Unknown,
Custom(String),
}Expand description
Stable pressure-system kind vocabulary.
Variants§
High
High pressure.
Low
Low pressure.
Ridge
Ridge.
Trough
Trough.
Cyclone
Cyclone.
Anticyclone
Anticyclone.
Unknown
Unknown pressure system kind.
Custom(String)
Caller-defined pressure system kind.
Trait Implementations§
Source§impl Clone for PressureSystemKind
impl Clone for PressureSystemKind
Source§fn clone(&self) -> PressureSystemKind
fn clone(&self) -> PressureSystemKind
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 PressureSystemKind
impl Debug for PressureSystemKind
Source§impl Display for PressureSystemKind
impl Display for PressureSystemKind
Source§impl FromStr for PressureSystemKind
impl FromStr for PressureSystemKind
Source§type Err = PressureSystemKindParseError
type Err = PressureSystemKindParseError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<PressureSystemKind, <PressureSystemKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<PressureSystemKind, <PressureSystemKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for PressureSystemKind
impl Hash for PressureSystemKind
Source§impl Ord for PressureSystemKind
impl Ord for PressureSystemKind
Source§fn cmp(&self, other: &PressureSystemKind) -> Ordering
fn cmp(&self, other: &PressureSystemKind) -> 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 PressureSystemKind
impl PartialEq for PressureSystemKind
Source§impl PartialOrd for PressureSystemKind
impl PartialOrd for PressureSystemKind
impl Eq for PressureSystemKind
impl StructuralPartialEq for PressureSystemKind
Auto Trait Implementations§
impl Freeze for PressureSystemKind
impl RefUnwindSafe for PressureSystemKind
impl Send for PressureSystemKind
impl Sync for PressureSystemKind
impl Unpin for PressureSystemKind
impl UnsafeUnpin for PressureSystemKind
impl UnwindSafe for PressureSystemKind
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