pub struct MetadataAttributeValueSet {
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
Describes the vaues provided for a metadata attribute.
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 MetadataAttributeValueSet
impl Clone for MetadataAttributeValueSet
Source§fn clone(&self) -> MetadataAttributeValueSet
fn clone(&self) -> MetadataAttributeValueSet
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 MetadataAttributeValueSet
impl Debug for MetadataAttributeValueSet
Source§impl Default for MetadataAttributeValueSet
impl Default for MetadataAttributeValueSet
Source§fn default() -> MetadataAttributeValueSet
fn default() -> MetadataAttributeValueSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataAttributeValueSet
impl<'de> Deserialize<'de> for MetadataAttributeValueSet
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
impl Eq for MetadataAttributeValueSet
impl StructuralPartialEq for MetadataAttributeValueSet
Auto Trait Implementations§
impl Freeze for MetadataAttributeValueSet
impl RefUnwindSafe for MetadataAttributeValueSet
impl Send for MetadataAttributeValueSet
impl Sync for MetadataAttributeValueSet
impl Unpin for MetadataAttributeValueSet
impl UnwindSafe for MetadataAttributeValueSet
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