pub struct MetadataAttributeUsage {
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub metadata_attribute_reference: String,
pub attribute_relationship: AttributeRelationship,
pub other: Option<HashMap<String, Value>>,
}
Expand description
Defines how a metadata attribute is used within a data structure.
Fields§
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§metadata_attribute_reference: String
§attribute_relationship: AttributeRelationship
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for MetadataAttributeUsage
impl Clone for MetadataAttributeUsage
Source§fn clone(&self) -> MetadataAttributeUsage
fn clone(&self) -> MetadataAttributeUsage
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 MetadataAttributeUsage
impl Debug for MetadataAttributeUsage
Source§impl<'de> Deserialize<'de> for MetadataAttributeUsage
impl<'de> Deserialize<'de> for MetadataAttributeUsage
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 MetadataAttributeUsage
impl Extendable for MetadataAttributeUsage
Source§impl PartialEq for MetadataAttributeUsage
impl PartialEq for MetadataAttributeUsage
Source§impl Serialize for MetadataAttributeUsage
impl Serialize for MetadataAttributeUsage
impl Eq for MetadataAttributeUsage
impl StructuralPartialEq for MetadataAttributeUsage
Auto Trait Implementations§
impl Freeze for MetadataAttributeUsage
impl RefUnwindSafe for MetadataAttributeUsage
impl Send for MetadataAttributeUsage
impl Sync for MetadataAttributeUsage
impl Unpin for MetadataAttributeUsage
impl UnwindSafe for MetadataAttributeUsage
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