pub struct MetadataRecord<'a> {
pub md_structure: Structure,
pub md_structure_id: StructureId<'a>,
pub md_structure_name: Option<StructureName<'a>>,
pub metadataset_id: &'a str,
pub metadataset_name: Option<&'a str>,
pub action: Action,
pub target_types: Vec<&'a str>,
pub target_ids: Vec<&'a str>,
pub target_names: Option<&'a str>,
pub components: HashMap<usize, &'a str>,
pub others: HashMap<usize, &'a str>,
}
Expand description
A CSV record for an SDMX-CSV Metadata Message.
Fields§
§md_structure: Structure
§md_structure_id: StructureId<'a>
§md_structure_name: Option<StructureName<'a>>
§metadataset_id: &'a str
§metadataset_name: Option<&'a str>
§action: Action
§target_types: Vec<&'a str>
§target_ids: Vec<&'a str>
§target_names: Option<&'a str>
§components: HashMap<usize, &'a str>
§others: HashMap<usize, &'a str>
Trait Implementations§
Source§impl<'a> Clone for MetadataRecord<'a>
impl<'a> Clone for MetadataRecord<'a>
Source§fn clone(&self) -> MetadataRecord<'a>
fn clone(&self) -> MetadataRecord<'a>
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<'a> Debug for MetadataRecord<'a>
impl<'a> Debug for MetadataRecord<'a>
Source§impl<'a> PartialEq for MetadataRecord<'a>
impl<'a> PartialEq for MetadataRecord<'a>
impl<'a> Eq for MetadataRecord<'a>
impl<'a> StructuralPartialEq for MetadataRecord<'a>
Auto Trait Implementations§
impl<'a> Freeze for MetadataRecord<'a>
impl<'a> RefUnwindSafe for MetadataRecord<'a>
impl<'a> Send for MetadataRecord<'a>
impl<'a> Sync for MetadataRecord<'a>
impl<'a> Unpin for MetadataRecord<'a>
impl<'a> UnwindSafe for MetadataRecord<'a>
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