pub struct GraphData {
pub factory_timestamp: String,
pub timestamp: String,
pub _type: i32,
pub value_in_mg_per_dl: i32,
pub measurement_color: i32,
pub glucose_units: i32,
pub value: i32,
pub is_high: bool,
pub is_low: bool,
}Fields§
§factory_timestamp: String§timestamp: String§_type: i32§value_in_mg_per_dl: i32§measurement_color: i32§glucose_units: i32§value: i32§is_high: bool§is_low: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for GraphData
impl<'de> Deserialize<'de> for GraphData
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 GraphData
impl RefUnwindSafe for GraphData
impl Send for GraphData
impl Sync for GraphData
impl Unpin for GraphData
impl UnwindSafe for GraphData
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