pub enum ValueType {
Vector,
Matrix,
Scalar,
String,
}
Expand description
The enumaration of all value types.
Variants§
Vector
A set of time series containing a single sample for each time series, all sharing the same timestamp.
Matrix
Also called a range vector, a set of time series containing a range of data points over time for each time series.
Scalar
A simple numeric floating point value.
String
A simple string value.
Trait Implementations§
impl Copy for ValueType
impl StructuralPartialEq for ValueType
Auto Trait Implementations§
impl Freeze for ValueType
impl RefUnwindSafe for ValueType
impl Send for ValueType
impl Sync for ValueType
impl Unpin for ValueType
impl UnwindSafe for ValueType
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