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