pub struct MetadataConstraintAttachment {
pub metadata_provider: Option<String>,
pub metadata_sets: Option<Vec<String>>,
pub metadata_structures: Option<Vec<String>>,
pub metadataflows: Option<Vec<String>>,
pub metadata_provision_agreements: Option<Vec<String>>,
pub simple_data_sources: Option<Vec<String>>,
pub queryable_data_sources: Option<QueryableDataSource>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A collection of references to metadata-constrainable artefacts.
Fields§
§metadata_provider: Option<String>
§metadata_sets: Option<Vec<String>>
§metadata_structures: Option<Vec<String>>
§metadataflows: Option<Vec<String>>
§metadata_provision_agreements: Option<Vec<String>>
§simple_data_sources: Option<Vec<String>>
§queryable_data_sources: Option<QueryableDataSource>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for MetadataConstraintAttachment
impl Clone for MetadataConstraintAttachment
Source§fn clone(&self) -> MetadataConstraintAttachment
fn clone(&self) -> MetadataConstraintAttachment
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 MetadataConstraintAttachment
impl Debug for MetadataConstraintAttachment
Source§impl Default for MetadataConstraintAttachment
impl Default for MetadataConstraintAttachment
Source§fn default() -> MetadataConstraintAttachment
fn default() -> MetadataConstraintAttachment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataConstraintAttachment
impl<'de> Deserialize<'de> for MetadataConstraintAttachment
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 MetadataConstraintAttachment
impl PartialEq for MetadataConstraintAttachment
Source§fn eq(&self, other: &MetadataConstraintAttachment) -> bool
fn eq(&self, other: &MetadataConstraintAttachment) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for MetadataConstraintAttachment
impl StructuralPartialEq for MetadataConstraintAttachment
Auto Trait Implementations§
impl Freeze for MetadataConstraintAttachment
impl RefUnwindSafe for MetadataConstraintAttachment
impl Send for MetadataConstraintAttachment
impl Sync for MetadataConstraintAttachment
impl Unpin for MetadataConstraintAttachment
impl UnwindSafe for MetadataConstraintAttachment
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