pub struct IADBDataPoint {
pub date: String,
pub value: f64,
}Expand description
Describes a single entry in the series.
Fields§
§date: StringDate of the data point.
value: f64Value of the data point.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IADBDataPoint
impl<'de> Deserialize<'de> for IADBDataPoint
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 Display for IADBDataPoint
impl Display for IADBDataPoint
Auto Trait Implementations§
impl Freeze for IADBDataPoint
impl RefUnwindSafe for IADBDataPoint
impl Send for IADBDataPoint
impl Sync for IADBDataPoint
impl Unpin for IADBDataPoint
impl UnwindSafe for IADBDataPoint
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