pub enum StructureMapTargetListMode {
First,
Last,
Share,
Single,
}Expand description
StructureMapTargetListMode. If field is a list, how to manage the production.
FHIR version: 5.0.0.
Variants§
First
first
First. when the target list is being assembled, the items for this rule go first. If more than one rule defines a first item (for a given instance of mapping) then this is an error.
Last
last
Last. when the target list is being assembled, the items for this rule go last. If more than one rule defines a last item (for a given instance of mapping) then this is an error.
share
Share. the target instance is shared with the target instances generated by another rule (up to the first common n items, then create new ones).
Single
single
single. the target instance is shared with a number of target instances generated by another rule (up to the first common n items, then create new ones).
Trait Implementations§
Source§impl AsRef<str> for StructureMapTargetListMode
impl AsRef<str> for StructureMapTargetListMode
Source§impl Clone for StructureMapTargetListMode
impl Clone for StructureMapTargetListMode
Source§fn clone(&self) -> StructureMapTargetListMode
fn clone(&self) -> StructureMapTargetListMode
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for StructureMapTargetListMode
impl Debug for StructureMapTargetListMode
Source§impl<'de> Deserialize<'de> for StructureMapTargetListMode
impl<'de> Deserialize<'de> for StructureMapTargetListMode
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>,
Source§impl Display for StructureMapTargetListMode
impl Display for StructureMapTargetListMode
Source§impl From<StructureMapTargetListMode> for CodeableConcept
impl From<StructureMapTargetListMode> for CodeableConcept
Source§fn from(code: StructureMapTargetListMode) -> Self
fn from(code: StructureMapTargetListMode) -> Self
Source§impl From<StructureMapTargetListMode> for Coding
impl From<StructureMapTargetListMode> for Coding
Source§fn from(code: StructureMapTargetListMode) -> Self
fn from(code: StructureMapTargetListMode) -> Self
Source§impl FromStr for StructureMapTargetListMode
impl FromStr for StructureMapTargetListMode
Source§impl Hash for StructureMapTargetListMode
impl Hash for StructureMapTargetListMode
Source§impl PartialEq for StructureMapTargetListMode
impl PartialEq for StructureMapTargetListMode
Source§fn eq(&self, other: &StructureMapTargetListMode) -> bool
fn eq(&self, other: &StructureMapTargetListMode) -> bool
self and other values to be equal, and is used by ==.