pub struct MetadataAttributeList {
pub id: String,
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub metadata_attributes: Option<Vec<MetadataAttribute>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A set of metadata attributes that can be defined as a hierarchy.
Fields§
§id: String
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§metadata_attributes: Option<Vec<MetadataAttribute>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for MetadataAttributeList
impl Clone for MetadataAttributeList
Source§fn clone(&self) -> MetadataAttributeList
fn clone(&self) -> MetadataAttributeList
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 MetadataAttributeList
impl Debug for MetadataAttributeList
Source§impl Default for MetadataAttributeList
impl Default for MetadataAttributeList
Source§fn default() -> MetadataAttributeList
fn default() -> MetadataAttributeList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataAttributeList
impl<'de> Deserialize<'de> for MetadataAttributeList
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 MetadataAttributeList
impl Extendable for MetadataAttributeList
Source§impl PartialEq for MetadataAttributeList
impl PartialEq for MetadataAttributeList
Source§impl Serialize for MetadataAttributeList
impl Serialize for MetadataAttributeList
impl Eq for MetadataAttributeList
impl StructuralPartialEq for MetadataAttributeList
Auto Trait Implementations§
impl Freeze for MetadataAttributeList
impl RefUnwindSafe for MetadataAttributeList
impl Send for MetadataAttributeList
impl Sync for MetadataAttributeList
impl Unpin for MetadataAttributeList
impl UnwindSafe for MetadataAttributeList
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