pub struct DotthzMetaData {
pub user: String,
pub email: String,
pub orcid: String,
pub institution: String,
pub description: String,
pub md: IndexMap<String, String>,
pub ds_description: Vec<String>,
pub version: String,
pub mode: String,
pub instrument: String,
pub time: String,
pub date: String,
}Expand description
Metadata associated with a dotThz measurement.
Fields§
§user: StringThe user responsible for the measurement.
email: StringThe email of the user.
orcid: StringThe ORCID identifier for the user.
institution: StringThe institution of the user.
description: StringThe description of the measurement.
md: IndexMap<String, String>Additional metadata stored as key-value pairs.
ds_description: Vec<String>dsDescription stored as key-value pairs.
version: StringdotThz version
mode: StringThe mode of measurement.
instrument: StringThe instrument used for measurement.
time: StringThe time of measurement.
date: StringThe date of measurement.
Trait Implementations§
Source§impl Clone for DotthzMetaData
impl Clone for DotthzMetaData
Source§fn clone(&self) -> DotthzMetaData
fn clone(&self) -> DotthzMetaData
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 DotthzMetaData
impl Debug for DotthzMetaData
Source§impl Default for DotthzMetaData
impl Default for DotthzMetaData
Source§fn default() -> DotthzMetaData
fn default() -> DotthzMetaData
Returns the “default value” for a type. Read more
Source§impl PartialEq for DotthzMetaData
impl PartialEq for DotthzMetaData
impl StructuralPartialEq for DotthzMetaData
Auto Trait Implementations§
impl Freeze for DotthzMetaData
impl RefUnwindSafe for DotthzMetaData
impl Send for DotthzMetaData
impl Sync for DotthzMetaData
impl Unpin for DotthzMetaData
impl UnwindSafe for DotthzMetaData
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