pub enum CtmTimeSeriesDataPathToFile {
Variant0(String),
Variant1(Vec<String>),
}
Expand description
path to file containing all time series information or a separate path for each time series
JSON schema
{
"description": "path to file containing all time series information or a separate path for each time series",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
Variants§
Trait Implementations§
Source§impl Clone for CtmTimeSeriesDataPathToFile
impl Clone for CtmTimeSeriesDataPathToFile
Source§fn clone(&self) -> CtmTimeSeriesDataPathToFile
fn clone(&self) -> CtmTimeSeriesDataPathToFile
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 CtmTimeSeriesDataPathToFile
impl Debug for CtmTimeSeriesDataPathToFile
Source§impl<'de> Deserialize<'de> for CtmTimeSeriesDataPathToFile
impl<'de> Deserialize<'de> for CtmTimeSeriesDataPathToFile
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 From<&CtmTimeSeriesDataPathToFile> for CtmTimeSeriesDataPathToFile
impl From<&CtmTimeSeriesDataPathToFile> for CtmTimeSeriesDataPathToFile
Source§fn from(value: &CtmTimeSeriesDataPathToFile) -> Self
fn from(value: &CtmTimeSeriesDataPathToFile) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CtmTimeSeriesDataPathToFile
impl RefUnwindSafe for CtmTimeSeriesDataPathToFile
impl Send for CtmTimeSeriesDataPathToFile
impl Sync for CtmTimeSeriesDataPathToFile
impl Unpin for CtmTimeSeriesDataPathToFile
impl UnwindSafe for CtmTimeSeriesDataPathToFile
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