pub struct CodeableConceptInner {
pub id: Option<String>,
pub extension: Vec<Extension>,
pub coding: Vec<Option<Coding>>,
pub coding_ext: Vec<Option<FieldExtension>>,
pub text: Option<String>,
pub text_ext: Option<FieldExtension>,
}
Expand description
CodeableConcept Type: A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.
CodeableConcept v5.0.0
Concept - reference to a terminology or just text
A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.
Not all terminology uses fit this general pattern. In some cases, models should not use CodeableConcept and use Coding directly and provide their own structure for managing text, codings, translations and the relationship between elements and pre- and post-coordination.
Fields§
§id: Option<String>
Unique id for inter-element referencing
Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
extension: Vec<Extension>
Additional content defined by implementations
May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.
coding: Vec<Option<Coding>>
Code defined by a terminology system
A reference to a code defined by a terminology system.
Codes may be defined very casually in enumerations, or code lists, up to very formal definitions such as SNOMED CT - see the HL7 v3 Core Principles for more information. Ordering of codings is undefined and SHALL NOT be used to infer meaning. Generally, at most only one of the coding values will be labeled as UserSelected = true.
coding_ext: Vec<Option<FieldExtension>>
Extension field.
text: Option<String>
Plain text representation of the concept
A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user.
Very often the text is the same as a displayName of one of the codings.
text_ext: Option<FieldExtension>
Extension field.
Trait Implementations§
Source§impl Clone for CodeableConceptInner
impl Clone for CodeableConceptInner
Source§fn clone(&self) -> CodeableConceptInner
fn clone(&self) -> CodeableConceptInner
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more