pub enum HistoricalComparison {
HighTemperature(Trend<TemperatureUnit>),
LowTemperature(Trend<TemperatureUnit>),
PrecipitationAmount(Trend<LengthUnit>),
SnowfallAmount(Trend<LengthUnit>),
}Variants§
HighTemperature(Trend<TemperatureUnit>)
LowTemperature(Trend<TemperatureUnit>)
PrecipitationAmount(Trend<LengthUnit>)
SnowfallAmount(Trend<LengthUnit>)
Trait Implementations§
Source§impl Clone for HistoricalComparison
impl Clone for HistoricalComparison
Source§fn clone(&self) -> HistoricalComparison
fn clone(&self) -> HistoricalComparison
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HistoricalComparison
impl Debug for HistoricalComparison
Source§impl<'de> Deserialize<'de> for HistoricalComparison
impl<'de> Deserialize<'de> for HistoricalComparison
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HistoricalComparison
impl PartialEq for HistoricalComparison
Source§fn eq(&self, other: &HistoricalComparison) -> bool
fn eq(&self, other: &HistoricalComparison) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HistoricalComparison
Auto Trait Implementations§
impl Freeze for HistoricalComparison
impl RefUnwindSafe for HistoricalComparison
impl Send for HistoricalComparison
impl Sync for HistoricalComparison
impl Unpin for HistoricalComparison
impl UnsafeUnpin for HistoricalComparison
impl UnwindSafe for HistoricalComparison
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