#[non_exhaustive]pub struct TimeSeriesDataPoint {
    pub time: Option<String>,
    pub value: Option<Datum>,
}Expand description
The timeseries data type represents the values of a measure over time. A time series is an array of rows of timestamps and measure values, with rows sorted in ascending order of time. A TimeSeriesDataPoint is a single data point in the time series. It represents a tuple of (time, measure value) in a time series.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.time: Option<String>The timestamp when the measure value was collected.
value: Option<Datum>The measure value for the data point.
Implementations§
source§impl TimeSeriesDataPoint
 
impl TimeSeriesDataPoint
sourcepub fn builder() -> TimeSeriesDataPointBuilder
 
pub fn builder() -> TimeSeriesDataPointBuilder
Creates a new builder-style object to manufacture TimeSeriesDataPoint.
Trait Implementations§
source§impl Clone for TimeSeriesDataPoint
 
impl Clone for TimeSeriesDataPoint
source§fn clone(&self) -> TimeSeriesDataPoint
 
fn clone(&self) -> TimeSeriesDataPoint
Returns a copy 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 TimeSeriesDataPoint
 
impl Debug for TimeSeriesDataPoint
source§impl PartialEq<TimeSeriesDataPoint> for TimeSeriesDataPoint
 
impl PartialEq<TimeSeriesDataPoint> for TimeSeriesDataPoint
source§fn eq(&self, other: &TimeSeriesDataPoint) -> bool
 
fn eq(&self, other: &TimeSeriesDataPoint) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TimeSeriesDataPoint
Auto Trait Implementations§
impl RefUnwindSafe for TimeSeriesDataPoint
impl Send for TimeSeriesDataPoint
impl Sync for TimeSeriesDataPoint
impl Unpin for TimeSeriesDataPoint
impl UnwindSafe for TimeSeriesDataPoint
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