pub struct Attribute {
pub id: String,
pub annotations: Option<Vec<Annotation>>,
pub format: Option<Format>,
pub value: Option<SdmxValue>,
pub attributes: Option<Vec<Attribute>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A reported metadata attribute value.
Fields§
§id: String
§annotations: Option<Vec<Annotation>>
§format: Option<Format>
§value: Option<SdmxValue>
§attributes: Option<Vec<Attribute>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Attribute
impl<'de> Deserialize<'de> for Attribute
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 StructuralPartialEq for Attribute
Auto Trait Implementations§
impl Freeze for Attribute
impl RefUnwindSafe for Attribute
impl Send for Attribute
impl Sync for Attribute
impl Unpin for Attribute
impl UnwindSafe for Attribute
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