pub enum ConceptMapGroupElementTargetDependsOnValue {
Code(String),
Coding(Coding),
String(String),
Boolean(bool),
Quantity(Quantity),
}Expand description
Choice of types for the value[x] field in ConceptMapGroupElementTargetDependsOn
Variants§
Code(String)
Variant accepting the Code type.
Coding(Coding)
Variant accepting the Coding type.
String(String)
Variant accepting the String type.
Boolean(bool)
Variant accepting the Boolean type.
Quantity(Quantity)
Variant accepting the Quantity type.
Trait Implementations§
Source§impl Clone for ConceptMapGroupElementTargetDependsOnValue
impl Clone for ConceptMapGroupElementTargetDependsOnValue
Source§fn clone(&self) -> ConceptMapGroupElementTargetDependsOnValue
fn clone(&self) -> ConceptMapGroupElementTargetDependsOnValue
Returns a duplicate 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<'de> Deserialize<'de> for ConceptMapGroupElementTargetDependsOnValue
impl<'de> Deserialize<'de> for ConceptMapGroupElementTargetDependsOnValue
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConceptMapGroupElementTargetDependsOnValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConceptMapGroupElementTargetDependsOnValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConceptMapGroupElementTargetDependsOnValue
impl PartialEq for ConceptMapGroupElementTargetDependsOnValue
Source§fn eq(&self, other: &ConceptMapGroupElementTargetDependsOnValue) -> bool
fn eq(&self, other: &ConceptMapGroupElementTargetDependsOnValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConceptMapGroupElementTargetDependsOnValue
impl Serialize for ConceptMapGroupElementTargetDependsOnValue
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ConceptMapGroupElementTargetDependsOnValue
Auto Trait Implementations§
impl Freeze for ConceptMapGroupElementTargetDependsOnValue
impl RefUnwindSafe for ConceptMapGroupElementTargetDependsOnValue
impl Send for ConceptMapGroupElementTargetDependsOnValue
impl Sync for ConceptMapGroupElementTargetDependsOnValue
impl Unpin for ConceptMapGroupElementTargetDependsOnValue
impl UnwindSafe for ConceptMapGroupElementTargetDependsOnValue
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