#[non_exhaustive]pub enum Trend {
NoSignificantChange,
Temporary,
Becoming,
}Expand description
TREND forecast change indicator.
JSON representation is in lowercase snake case.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NoSignificantChange
No significant changes are expected.
Temporary
Expected temporary fluctuations in the meteorological conditions.
Becoming
Expected changes which reach or pass specified values.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Trend
impl<'de> Deserialize<'de> for Trend
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
impl Copy for Trend
impl Eq for Trend
impl StructuralPartialEq for Trend
Auto Trait Implementations§
impl Freeze for Trend
impl RefUnwindSafe for Trend
impl Send for Trend
impl Sync for Trend
impl Unpin for Trend
impl UnwindSafe for Trend
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