pub struct WeatherChange {
pub date: String,
pub day_precipitation_amount: WeatherChangeDirection,
pub high_temperature: WeatherChangeDirection,
pub low_temperature: WeatherChangeDirection,
pub night_precipitation_amount: WeatherChangeDirection,
}Fields§
§date: String§day_precipitation_amount: WeatherChangeDirection§high_temperature: WeatherChangeDirection§low_temperature: WeatherChangeDirection§night_precipitation_amount: WeatherChangeDirectionTrait Implementations§
Source§impl Clone for WeatherChange
impl Clone for WeatherChange
Source§fn clone(&self) -> WeatherChange
fn clone(&self) -> WeatherChange
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 WeatherChange
impl Debug for WeatherChange
Source§impl<'de> Deserialize<'de> for WeatherChange
impl<'de> Deserialize<'de> for WeatherChange
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 WeatherChange
impl PartialEq for WeatherChange
Source§fn eq(&self, other: &WeatherChange) -> bool
fn eq(&self, other: &WeatherChange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WeatherChange
impl StructuralPartialEq for WeatherChange
Auto Trait Implementations§
impl Freeze for WeatherChange
impl RefUnwindSafe for WeatherChange
impl Send for WeatherChange
impl Sync for WeatherChange
impl Unpin for WeatherChange
impl UnsafeUnpin for WeatherChange
impl UnwindSafe for WeatherChange
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