pub enum CodeSystemConceptPropertyValueExtension {
Code(FieldExtension),
Coding(FieldExtension),
String(FieldExtension),
Integer(FieldExtension),
Boolean(FieldExtension),
DateTime(FieldExtension),
Decimal(FieldExtension),
}Expand description
Extension value for CodeSystemConceptPropertyValue.
Variants§
Code(FieldExtension)
Variant accepting the Code extension.
Coding(FieldExtension)
Variant accepting the Coding extension.
String(FieldExtension)
Variant accepting the String extension.
Integer(FieldExtension)
Variant accepting the Integer extension.
Boolean(FieldExtension)
Variant accepting the Boolean extension.
DateTime(FieldExtension)
Variant accepting the DateTime extension.
Decimal(FieldExtension)
Variant accepting the Decimal extension.
Trait Implementations§
Source§impl Clone for CodeSystemConceptPropertyValueExtension
impl Clone for CodeSystemConceptPropertyValueExtension
Source§fn clone(&self) -> CodeSystemConceptPropertyValueExtension
fn clone(&self) -> CodeSystemConceptPropertyValueExtension
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CodeSystemConceptPropertyValueExtension
impl<'de> Deserialize<'de> for CodeSystemConceptPropertyValueExtension
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 PartialEq for CodeSystemConceptPropertyValueExtension
impl PartialEq for CodeSystemConceptPropertyValueExtension
Source§fn eq(&self, other: &CodeSystemConceptPropertyValueExtension) -> bool
fn eq(&self, other: &CodeSystemConceptPropertyValueExtension) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodeSystemConceptPropertyValueExtension
Auto Trait Implementations§
impl Freeze for CodeSystemConceptPropertyValueExtension
impl RefUnwindSafe for CodeSystemConceptPropertyValueExtension
impl Send for CodeSystemConceptPropertyValueExtension
impl Sync for CodeSystemConceptPropertyValueExtension
impl Unpin for CodeSystemConceptPropertyValueExtension
impl UnsafeUnpin for CodeSystemConceptPropertyValueExtension
impl UnwindSafe for CodeSystemConceptPropertyValueExtension
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