pub struct VtlMappingScheme {
pub artefact: CommonArtefactType,
pub is_partial: Option<bool>,
pub vtl_mappings: Option<Vec<Item>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The item scheme for a VTL (Validation and Transformation Language) mapping.
Fields§
§artefact: CommonArtefactType
§is_partial: Option<bool>
§vtl_mappings: Option<Vec<Item>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Artefact for VtlMappingScheme
impl Artefact for VtlMappingScheme
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 VtlMappingScheme
impl Clone for VtlMappingScheme
Source§fn clone(&self) -> VtlMappingScheme
fn clone(&self) -> VtlMappingScheme
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 VtlMappingScheme
impl Debug for VtlMappingScheme
Source§impl Default for VtlMappingScheme
impl Default for VtlMappingScheme
Source§fn default() -> VtlMappingScheme
fn default() -> VtlMappingScheme
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VtlMappingScheme
impl<'de> Deserialize<'de> for VtlMappingScheme
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 VtlMappingScheme
impl Extendable for VtlMappingScheme
Source§impl ItemScheme for VtlMappingScheme
impl ItemScheme for VtlMappingScheme
Source§impl PartialEq for VtlMappingScheme
impl PartialEq for VtlMappingScheme
Source§impl Serialize for VtlMappingScheme
impl Serialize for VtlMappingScheme
impl Eq for VtlMappingScheme
impl StructuralPartialEq for VtlMappingScheme
Auto Trait Implementations§
impl Freeze for VtlMappingScheme
impl RefUnwindSafe for VtlMappingScheme
impl Send for VtlMappingScheme
impl Sync for VtlMappingScheme
impl Unpin for VtlMappingScheme
impl UnwindSafe for VtlMappingScheme
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