pub struct DataStructure {
pub common: CommonArtefactType,
pub data_structure_components: Option<DataStructureComponents>,
pub metadata: Option<String>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A collection of metadata concepts, their structure and usage when used to collect or disseminate data.
Fields§
§common: CommonArtefactType
§data_structure_components: Option<DataStructureComponents>
§metadata: Option<String>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for DataStructure
impl Clone for DataStructure
Source§fn clone(&self) -> DataStructure
fn clone(&self) -> DataStructure
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 DataStructure
impl Debug for DataStructure
Source§impl Default for DataStructure
impl Default for DataStructure
Source§fn default() -> DataStructure
fn default() -> DataStructure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataStructure
impl<'de> Deserialize<'de> for DataStructure
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 DataStructure
impl PartialEq for DataStructure
Source§impl Serialize for DataStructure
impl Serialize for DataStructure
impl Eq for DataStructure
impl StructuralPartialEq for DataStructure
Auto Trait Implementations§
impl Freeze for DataStructure
impl RefUnwindSafe for DataStructure
impl Send for DataStructure
impl Sync for DataStructure
impl Unpin for DataStructure
impl UnwindSafe for DataStructure
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