pub struct ConstraintAttachment {
pub data_provider: Option<String>,
pub data_structures: Option<Vec<String>>,
pub dataflows: Option<Vec<String>>,
pub 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 data-constrainable artefacts.
Fields§
§data_provider: Option<String>
§data_structures: Option<Vec<String>>
§dataflows: Option<Vec<String>>
§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 ConstraintAttachment
impl Clone for ConstraintAttachment
Source§fn clone(&self) -> ConstraintAttachment
fn clone(&self) -> ConstraintAttachment
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 ConstraintAttachment
impl Debug for ConstraintAttachment
Source§impl Default for ConstraintAttachment
impl Default for ConstraintAttachment
Source§fn default() -> ConstraintAttachment
fn default() -> ConstraintAttachment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConstraintAttachment
impl<'de> Deserialize<'de> for ConstraintAttachment
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 Extendable for ConstraintAttachment
impl Extendable for ConstraintAttachment
Source§impl PartialEq for ConstraintAttachment
impl PartialEq for ConstraintAttachment
Source§impl Serialize for ConstraintAttachment
impl Serialize for ConstraintAttachment
impl Eq for ConstraintAttachment
impl StructuralPartialEq for ConstraintAttachment
Auto Trait Implementations§
impl Freeze for ConstraintAttachment
impl RefUnwindSafe for ConstraintAttachment
impl Send for ConstraintAttachment
impl Sync for ConstraintAttachment
impl Unpin for ConstraintAttachment
impl UnwindSafe for ConstraintAttachment
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