pub enum TemperatureKind {
Air,
DewPoint,
WetBulb,
HeatIndex,
WindChill,
Apparent,
Unknown,
Custom(String),
}Expand description
Stable meteorological temperature kind vocabulary.
Variants§
Air
Air temperature.
DewPoint
Dew-point temperature.
WetBulb
Wet-bulb temperature.
HeatIndex
Heat index.
WindChill
Wind chill.
Apparent
Apparent temperature.
Unknown
Unknown temperature kind.
Custom(String)
Caller-defined temperature kind text.
Trait Implementations§
Source§impl Clone for TemperatureKind
impl Clone for TemperatureKind
Source§fn clone(&self) -> TemperatureKind
fn clone(&self) -> TemperatureKind
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 TemperatureKind
impl Debug for TemperatureKind
Source§impl Display for TemperatureKind
impl Display for TemperatureKind
Source§impl FromStr for TemperatureKind
impl FromStr for TemperatureKind
Source§impl Hash for TemperatureKind
impl Hash for TemperatureKind
Source§impl Ord for TemperatureKind
impl Ord for TemperatureKind
Source§fn cmp(&self, other: &TemperatureKind) -> Ordering
fn cmp(&self, other: &TemperatureKind) -> 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 TemperatureKind
impl PartialEq for TemperatureKind
Source§impl PartialOrd for TemperatureKind
impl PartialOrd for TemperatureKind
impl Eq for TemperatureKind
impl StructuralPartialEq for TemperatureKind
Auto Trait Implementations§
impl Freeze for TemperatureKind
impl RefUnwindSafe for TemperatureKind
impl Send for TemperatureKind
impl Sync for TemperatureKind
impl Unpin for TemperatureKind
impl UnsafeUnpin for TemperatureKind
impl UnwindSafe for TemperatureKind
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