pub struct ComponentValue {Show 13 fields
pub id: String,
pub name: Option<String>,
pub names: Option<LocalizedText>,
pub values: Option<Vec<SdmxValue>>,
pub description: Option<String>,
pub descriptions: Option<LocalizedText>,
pub start: Option<String>,
pub end: Option<String>,
pub parent: Option<String>,
pub order: Option<isize>,
pub links: Option<Vec<Link>>,
pub annotations: Option<Vec<usize>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A particular value for a component in a message.
Fields§
§id: String
§name: Option<String>
§names: Option<LocalizedText>
§values: Option<Vec<SdmxValue>>
§description: Option<String>
§descriptions: Option<LocalizedText>
§start: Option<String>
§end: Option<String>
§parent: Option<String>
§order: Option<isize>
§links: Option<Vec<Link>>
§annotations: Option<Vec<usize>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for ComponentValue
impl Clone for ComponentValue
Source§fn clone(&self) -> ComponentValue
fn clone(&self) -> ComponentValue
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 ComponentValue
impl Debug for ComponentValue
Source§impl Default for ComponentValue
impl Default for ComponentValue
Source§fn default() -> ComponentValue
fn default() -> ComponentValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComponentValue
impl<'de> Deserialize<'de> for ComponentValue
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 PartialEq for ComponentValue
impl PartialEq for ComponentValue
Source§impl Serialize for ComponentValue
impl Serialize for ComponentValue
impl StructuralPartialEq for ComponentValue
Auto Trait Implementations§
impl Freeze for ComponentValue
impl RefUnwindSafe for ComponentValue
impl Send for ComponentValue
impl Sync for ComponentValue
impl Unpin for ComponentValue
impl UnwindSafe for ComponentValue
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