pub struct MetadataSet {Show 22 fields
pub action: Option<Action>,
pub publication_period: Option<String>,
pub publication_year: Option<String>,
pub reporting_begin: Option<String>,
pub reporting_year: Option<String>,
pub id: String,
pub agency_id: String,
pub version: Option<String>,
pub is_external_reference: Option<bool>,
pub metadataflow: Option<String>,
pub metadata_provision_agreement: Option<String>,
pub valid_from: Option<String>,
pub valid_to: Option<String>,
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub name: String,
pub names: Option<LocalizedText>,
pub description: Option<String>,
pub descriptions: Option<LocalizedText>,
pub targets: Vec<String>,
pub attributes: Vec<Attribute>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A collection of reported metadata against a set of values for a given full or partial target identifier, as described in a metadata structure definition.
Fields§
§action: Option<Action>
§publication_period: Option<String>
§publication_year: Option<String>
§reporting_begin: Option<String>
§reporting_year: Option<String>
§id: String
§agency_id: String
§version: Option<String>
§is_external_reference: Option<bool>
§metadataflow: Option<String>
§metadata_provision_agreement: Option<String>
§valid_from: Option<String>
§valid_to: Option<String>
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§name: String
§names: Option<LocalizedText>
§description: Option<String>
§descriptions: Option<LocalizedText>
§targets: Vec<String>
§attributes: Vec<Attribute>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for MetadataSet
impl Clone for MetadataSet
Source§fn clone(&self) -> MetadataSet
fn clone(&self) -> MetadataSet
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 MetadataSet
impl Debug for MetadataSet
Source§impl Default for MetadataSet
impl Default for MetadataSet
Source§fn default() -> MetadataSet
fn default() -> MetadataSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataSet
impl<'de> Deserialize<'de> for MetadataSet
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 MetadataSet
impl PartialEq for MetadataSet
Source§impl Serialize for MetadataSet
impl Serialize for MetadataSet
impl StructuralPartialEq for MetadataSet
Auto Trait Implementations§
impl Freeze for MetadataSet
impl RefUnwindSafe for MetadataSet
impl Send for MetadataSet
impl Sync for MetadataSet
impl Unpin for MetadataSet
impl UnwindSafe for MetadataSet
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