pub struct MonthTemperatureStatistics {
pub month: i64,
pub average_low_temperature: f64,
pub average_high_temperature: f64,
}Fields§
§month: i64§average_low_temperature: f64§average_high_temperature: f64Trait Implementations§
Source§impl Clone for MonthTemperatureStatistics
impl Clone for MonthTemperatureStatistics
Source§fn clone(&self) -> MonthTemperatureStatistics
fn clone(&self) -> MonthTemperatureStatistics
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 MonthTemperatureStatistics
impl Debug for MonthTemperatureStatistics
Source§impl<'de> Deserialize<'de> for MonthTemperatureStatistics
impl<'de> Deserialize<'de> for MonthTemperatureStatistics
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 MonthTemperatureStatistics
impl PartialEq for MonthTemperatureStatistics
Source§fn eq(&self, other: &MonthTemperatureStatistics) -> bool
fn eq(&self, other: &MonthTemperatureStatistics) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MonthTemperatureStatistics
Auto Trait Implementations§
impl Freeze for MonthTemperatureStatistics
impl RefUnwindSafe for MonthTemperatureStatistics
impl Send for MonthTemperatureStatistics
impl Sync for MonthTemperatureStatistics
impl Unpin for MonthTemperatureStatistics
impl UnsafeUnpin for MonthTemperatureStatistics
impl UnwindSafe for MonthTemperatureStatistics
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