pub struct RecordingRaw {
pub date: Option<NaiveDate>,
pub hot_water: f64,
pub heating: f64,
pub average_outdoor_temp: f64,
}
Fields§
§date: Option<NaiveDate>
§hot_water: f64
§heating: f64
§average_outdoor_temp: f64
Trait Implementations§
Source§impl Clone for RecordingRaw
impl Clone for RecordingRaw
Source§fn clone(&self) -> RecordingRaw
fn clone(&self) -> RecordingRaw
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 RecordingRaw
impl Debug for RecordingRaw
Source§impl<'de> Deserialize<'de> for RecordingRaw
impl<'de> Deserialize<'de> for RecordingRaw
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 RecordingRaw
impl PartialEq for RecordingRaw
Source§impl PartialOrd for RecordingRaw
impl PartialOrd for RecordingRaw
impl StructuralPartialEq for RecordingRaw
Auto Trait Implementations§
impl Freeze for RecordingRaw
impl RefUnwindSafe for RecordingRaw
impl Send for RecordingRaw
impl Sync for RecordingRaw
impl Unpin for RecordingRaw
impl UnwindSafe for RecordingRaw
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