pub enum WeatherQuery {
Current,
Minute,
Hourly,
HourlyIn(DateInterval),
Daily,
DailyIn(DateInterval),
Alerts,
Availability,
Changes,
HistoricalComparisons,
}Variants§
Current
Minute
Hourly
HourlyIn(DateInterval)
Daily
DailyIn(DateInterval)
Alerts
Availability
Changes
HistoricalComparisons
Trait Implementations§
Source§impl Clone for WeatherQuery
impl Clone for WeatherQuery
Source§fn clone(&self) -> WeatherQuery
fn clone(&self) -> WeatherQuery
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 WeatherQuery
impl Debug for WeatherQuery
Source§impl PartialEq for WeatherQuery
impl PartialEq for WeatherQuery
Source§fn eq(&self, other: &WeatherQuery) -> bool
fn eq(&self, other: &WeatherQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WeatherQuery
impl StructuralPartialEq for WeatherQuery
Auto Trait Implementations§
impl Freeze for WeatherQuery
impl RefUnwindSafe for WeatherQuery
impl Send for WeatherQuery
impl Sync for WeatherQuery
impl Unpin for WeatherQuery
impl UnsafeUnpin for WeatherQuery
impl UnwindSafe for WeatherQuery
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