pub struct PartialHistoryData {
pub co2_values: Vec<u16>,
pub temp_values: Vec<u16>,
pub pressure_values: Vec<u16>,
pub humidity_values: Vec<u16>,
pub radon_values: Vec<u32>,
}Expand description
Partially downloaded history data for checkpoint resume.
Fields§
§co2_values: Vec<u16>§temp_values: Vec<u16>§pressure_values: Vec<u16>§humidity_values: Vec<u16>§radon_values: Vec<u32>Trait Implementations§
Source§impl Clone for PartialHistoryData
impl Clone for PartialHistoryData
Source§fn clone(&self) -> PartialHistoryData
fn clone(&self) -> PartialHistoryData
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 PartialHistoryData
impl Debug for PartialHistoryData
Source§impl Default for PartialHistoryData
impl Default for PartialHistoryData
Source§fn default() -> PartialHistoryData
fn default() -> PartialHistoryData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartialHistoryData
impl<'de> Deserialize<'de> for PartialHistoryData
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
Auto Trait Implementations§
impl Freeze for PartialHistoryData
impl RefUnwindSafe for PartialHistoryData
impl Send for PartialHistoryData
impl Sync for PartialHistoryData
impl Unpin for PartialHistoryData
impl UnwindSafe for PartialHistoryData
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