pub struct MetadataAttribute {
pub id: String,
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub concept_identity: String,
pub local_representation: Option<MetadataAttributeRepresentation>,
pub min_occurs: usize,
pub max_occurs: Option<Occurrence>,
pub is_presentational: Option<bool>,
pub metadata_attributes: Option<Vec<MetadataAttribute>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A metadata characteristic of an object or entity.
Fields§
§id: String
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§concept_identity: String
§local_representation: Option<MetadataAttributeRepresentation>
§min_occurs: usize
§max_occurs: Option<Occurrence>
§is_presentational: Option<bool>
§metadata_attributes: Option<Vec<MetadataAttribute>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for MetadataAttribute
impl Clone for MetadataAttribute
Source§fn clone(&self) -> MetadataAttribute
fn clone(&self) -> MetadataAttribute
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 MetadataAttribute
impl Debug for MetadataAttribute
Source§impl Default for MetadataAttribute
impl Default for MetadataAttribute
Source§fn default() -> MetadataAttribute
fn default() -> MetadataAttribute
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataAttribute
impl<'de> Deserialize<'de> for MetadataAttribute
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 MetadataAttribute
impl Extendable for MetadataAttribute
Source§impl PartialEq for MetadataAttribute
impl PartialEq for MetadataAttribute
Source§impl Serialize for MetadataAttribute
impl Serialize for MetadataAttribute
impl Eq for MetadataAttribute
impl StructuralPartialEq for MetadataAttribute
Auto Trait Implementations§
impl Freeze for MetadataAttribute
impl RefUnwindSafe for MetadataAttribute
impl Send for MetadataAttribute
impl Sync for MetadataAttribute
impl Unpin for MetadataAttribute
impl UnwindSafe for MetadataAttribute
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