pub struct MetadataConstraint {
pub artefact: CommonArtefactType,
pub role: Role,
pub constraint_attachment: Option<MetadataConstraintAttachment>,
pub metadata_target_regions: Option<Vec<MetadataTargetRegion>>,
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 metadata set.
Fields§
§artefact: CommonArtefactType
§role: Role
§constraint_attachment: Option<MetadataConstraintAttachment>
§metadata_target_regions: Option<Vec<MetadataTargetRegion>>
§release_calendar: Option<ReleaseCalendar>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Artefact for MetadataConstraint
impl Artefact for MetadataConstraint
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 MetadataConstraint
impl Clone for MetadataConstraint
Source§fn clone(&self) -> MetadataConstraint
fn clone(&self) -> MetadataConstraint
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 MetadataConstraint
impl Debug for MetadataConstraint
Source§impl<'de> Deserialize<'de> for MetadataConstraint
impl<'de> Deserialize<'de> for MetadataConstraint
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 MetadataConstraint
impl Extendable for MetadataConstraint
Source§impl PartialEq for MetadataConstraint
impl PartialEq for MetadataConstraint
Source§impl Serialize for MetadataConstraint
impl Serialize for MetadataConstraint
impl Eq for MetadataConstraint
impl StructuralPartialEq for MetadataConstraint
Auto Trait Implementations§
impl Freeze for MetadataConstraint
impl RefUnwindSafe for MetadataConstraint
impl Send for MetadataConstraint
impl Sync for MetadataConstraint
impl Unpin for MetadataConstraint
impl UnwindSafe for MetadataConstraint
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