pub enum TimeSeriesType {
String,
Numeric,
}Expand description
Specifies the data type of the data points.
Variants§
String
Indicates that timeseries type is a string.
Numeric
Indicates that timeseries type is a number.
Trait Implementations§
Source§impl Clone for TimeSeriesType
impl Clone for TimeSeriesType
Source§fn clone(&self) -> TimeSeriesType
fn clone(&self) -> TimeSeriesType
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 TimeSeriesType
impl Debug for TimeSeriesType
Source§impl Default for TimeSeriesType
impl Default for TimeSeriesType
Source§fn default() -> TimeSeriesType
fn default() -> TimeSeriesType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeSeriesType
impl<'de> Deserialize<'de> for TimeSeriesType
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 TimeSeriesType
impl RefUnwindSafe for TimeSeriesType
impl Send for TimeSeriesType
impl Sync for TimeSeriesType
impl Unpin for TimeSeriesType
impl UnwindSafe for TimeSeriesType
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