Trait Artefact

Source
pub trait Artefact {
    // Required methods
    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>>;
}
Expand description

A primitive type defined within the SDMX Informational Model specification.

Required Methods§

Implementors§