pub struct DataComponentValueSet {
pub id: String,
pub include: Option<bool>,
pub remove_prefix: Option<bool>,
pub time_range: Option<TimeRangeValue>,
pub values: Vec<StringOrDcv>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The structure for providing values for data attributes, measures, or metadata attributes.
Fields§
§id: String
§include: Option<bool>
§remove_prefix: Option<bool>
§time_range: Option<TimeRangeValue>
§values: Vec<StringOrDcv>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for DataComponentValueSet
impl Clone for DataComponentValueSet
Source§fn clone(&self) -> DataComponentValueSet
fn clone(&self) -> DataComponentValueSet
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 DataComponentValueSet
impl Debug for DataComponentValueSet
Source§impl Default for DataComponentValueSet
impl Default for DataComponentValueSet
Source§fn default() -> DataComponentValueSet
fn default() -> DataComponentValueSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataComponentValueSet
impl<'de> Deserialize<'de> for DataComponentValueSet
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 DataComponentValueSet
impl Extendable for DataComponentValueSet
Source§impl PartialEq for DataComponentValueSet
impl PartialEq for DataComponentValueSet
Source§impl Serialize for DataComponentValueSet
impl Serialize for DataComponentValueSet
impl Eq for DataComponentValueSet
impl StructuralPartialEq for DataComponentValueSet
Auto Trait Implementations§
impl Freeze for DataComponentValueSet
impl RefUnwindSafe for DataComponentValueSet
impl Send for DataComponentValueSet
impl Sync for DataComponentValueSet
impl Unpin for DataComponentValueSet
impl UnwindSafe for DataComponentValueSet
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