#[non_exhaustive]pub enum WeatherDescriptor {
Shallow,
Patches,
Partial,
LowDrifting,
Blowing,
Shower,
Thunderstorm,
Freezing,
}Expand description
Weather descriptor.
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.
Trait Implementations§
Source§impl Clone for WeatherDescriptor
impl Clone for WeatherDescriptor
Source§fn clone(&self) -> WeatherDescriptor
fn clone(&self) -> WeatherDescriptor
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 WeatherDescriptor
impl Debug for WeatherDescriptor
Source§impl<'de> Deserialize<'de> for WeatherDescriptor
impl<'de> Deserialize<'de> for WeatherDescriptor
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 FromStr for WeatherDescriptor
impl FromStr for WeatherDescriptor
Source§impl PartialEq for WeatherDescriptor
impl PartialEq for WeatherDescriptor
Source§impl Serialize for WeatherDescriptor
impl Serialize for WeatherDescriptor
impl Copy for WeatherDescriptor
impl Eq for WeatherDescriptor
impl StructuralPartialEq for WeatherDescriptor
Auto Trait Implementations§
impl Freeze for WeatherDescriptor
impl RefUnwindSafe for WeatherDescriptor
impl Send for WeatherDescriptor
impl Sync for WeatherDescriptor
impl Unpin for WeatherDescriptor
impl UnwindSafe for WeatherDescriptor
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