pub struct DataRecord<'a> {
pub structure: Structure,
pub structure_id: StructureId<'a>,
pub structure_name: Option<StructureName<'a>>,
pub action: Action,
pub series_key: Option<&'a str>,
pub obs_key: Option<&'a str>,
pub components: HashMap<usize, &'a str>,
pub other: HashMap<usize, &'a str>,
}
Expand description
A CSV record for an SDMX-CSV Data Message.
Fields§
§structure: Structure
§structure_id: StructureId<'a>
§structure_name: Option<StructureName<'a>>
§action: Action
§series_key: Option<&'a str>
§obs_key: Option<&'a str>
§components: HashMap<usize, &'a str>
§other: HashMap<usize, &'a str>
Trait Implementations§
Source§impl<'a> Clone for DataRecord<'a>
impl<'a> Clone for DataRecord<'a>
Source§fn clone(&self) -> DataRecord<'a>
fn clone(&self) -> DataRecord<'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 DataRecord<'a>
impl<'a> Debug for DataRecord<'a>
Source§impl<'a> PartialEq for DataRecord<'a>
impl<'a> PartialEq for DataRecord<'a>
impl<'a> Eq for DataRecord<'a>
impl<'a> StructuralPartialEq for DataRecord<'a>
Auto Trait Implementations§
impl<'a> Freeze for DataRecord<'a>
impl<'a> RefUnwindSafe for DataRecord<'a>
impl<'a> Send for DataRecord<'a>
impl<'a> Sync for DataRecord<'a>
impl<'a> Unpin for DataRecord<'a>
impl<'a> UnwindSafe for DataRecord<'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