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