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