pub struct DataConstraint {
pub artefact: CommonArtefactType,
pub role: Role,
pub constraint_attachment: Option<ConstraintAttachment>,
pub cube_regions: Option<Vec<CubeRegion>>,
pub data_key_sets: Option<Vec<DataKeySet>>,
pub release_calendar: Option<ReleaseCalendar>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A subset of the definition of the allowable (or available) content of a dataset.
Fields§
§artefact: CommonArtefactType
§role: Role
§constraint_attachment: Option<ConstraintAttachment>
§cube_regions: Option<Vec<CubeRegion>>
§data_key_sets: Option<Vec<DataKeySet>>
§release_calendar: Option<ReleaseCalendar>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Artefact for DataConstraint
impl Artefact for DataConstraint
fn artefact(&self) -> &CommonArtefactType
fn id(&self) -> &String
fn agency_id(&self) -> Option<&String>
fn version(&self) -> Option<&String>
fn name(&self) -> Option<&String>
fn names(&self) -> Option<&LocalizedText>
fn valid_from(&self) -> Option<&String>
fn valid_to(&self) -> Option<&String>
fn is_external_reference(&self) -> Option<bool>
fn annotations(&self) -> Option<&Vec<Annotation>>
fn links(&self) -> Option<&Vec<Link>>
Source§impl Clone for DataConstraint
impl Clone for DataConstraint
Source§fn clone(&self) -> DataConstraint
fn clone(&self) -> DataConstraint
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 DataConstraint
impl Debug for DataConstraint
Source§impl<'de> Deserialize<'de> for DataConstraint
impl<'de> Deserialize<'de> for DataConstraint
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 DataConstraint
impl PartialEq for DataConstraint
Source§impl Serialize for DataConstraint
impl Serialize for DataConstraint
impl Eq for DataConstraint
impl StructuralPartialEq for DataConstraint
Auto Trait Implementations§
impl Freeze for DataConstraint
impl RefUnwindSafe for DataConstraint
impl Send for DataConstraint
impl Sync for DataConstraint
impl Unpin for DataConstraint
impl UnwindSafe for DataConstraint
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