pub struct TimeDimensionFormat {
pub start_time: Option<String>,
pub end_time: Option<String>,
pub data_type: TimeDataType,
pub sentinel_values: Option<Vec<SentinelValue>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A representation of a time dimension, which may contain sentinel values.
Fields§
§start_time: Option<String>
§end_time: Option<String>
§data_type: TimeDataType
§sentinel_values: Option<Vec<SentinelValue>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for TimeDimensionFormat
impl Clone for TimeDimensionFormat
Source§fn clone(&self) -> TimeDimensionFormat
fn clone(&self) -> TimeDimensionFormat
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 TimeDimensionFormat
impl Debug for TimeDimensionFormat
Source§impl<'de> Deserialize<'de> for TimeDimensionFormat
impl<'de> Deserialize<'de> for TimeDimensionFormat
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 Extendable for TimeDimensionFormat
impl Extendable for TimeDimensionFormat
Source§impl PartialEq for TimeDimensionFormat
impl PartialEq for TimeDimensionFormat
Source§impl Serialize for TimeDimensionFormat
impl Serialize for TimeDimensionFormat
impl Eq for TimeDimensionFormat
impl StructuralPartialEq for TimeDimensionFormat
Auto Trait Implementations§
impl Freeze for TimeDimensionFormat
impl RefUnwindSafe for TimeDimensionFormat
impl Send for TimeDimensionFormat
impl Sync for TimeDimensionFormat
impl Unpin for TimeDimensionFormat
impl UnwindSafe for TimeDimensionFormat
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