pub enum CodeSystemContentMode {
Complete,
Example,
Fragment,
NotPresent,
Supplement,
}Expand description
CodeSystemContentMode. The extent of the content of the code system (the concepts and codes it defines) are represented in a code system resource.
FHIR version: 5.0.0.
Variants§
Complete
complete
Complete. All the concepts defined by the code system are included in the code system resource.
Example
example
Example. A subset of the valid externally defined concepts are included in the code system resource. There is no specific purpose or documented intent other than for illustrative purposes.
Fragment
fragment
Fragment. A subset of the code system concepts are included in the code system resource. This is a curated subset released for a specific purpose under the governance of the code system steward, and that the intent, bounds and consequences of the fragmentation are clearly defined in the fragment or the code system documentation. Fragments are also known as partitions.
NotPresent
not-present
Not Present. None of the concepts defined by the code system are included in the code system resource.
Supplement
supplement
Supplement. The resource doesn’t define any new concepts; it just provides additional designations and properties to another code system.
Trait Implementations§
Source§impl AsRef<str> for CodeSystemContentMode
impl AsRef<str> for CodeSystemContentMode
Source§impl Clone for CodeSystemContentMode
impl Clone for CodeSystemContentMode
Source§fn clone(&self) -> CodeSystemContentMode
fn clone(&self) -> CodeSystemContentMode
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 CodeSystemContentMode
impl Debug for CodeSystemContentMode
Source§impl<'de> Deserialize<'de> for CodeSystemContentMode
impl<'de> Deserialize<'de> for CodeSystemContentMode
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 CodeSystemContentMode
impl Display for CodeSystemContentMode
Source§impl From<CodeSystemContentMode> for CodeableConcept
impl From<CodeSystemContentMode> for CodeableConcept
Source§fn from(code: CodeSystemContentMode) -> Self
fn from(code: CodeSystemContentMode) -> Self
Source§impl From<CodeSystemContentMode> for Coding
impl From<CodeSystemContentMode> for Coding
Source§fn from(code: CodeSystemContentMode) -> Self
fn from(code: CodeSystemContentMode) -> Self
Source§impl FromStr for CodeSystemContentMode
impl FromStr for CodeSystemContentMode
Source§impl Hash for CodeSystemContentMode
impl Hash for CodeSystemContentMode
Source§impl PartialEq for CodeSystemContentMode
impl PartialEq for CodeSystemContentMode
Source§fn eq(&self, other: &CodeSystemContentMode) -> bool
fn eq(&self, other: &CodeSystemContentMode) -> bool
self and other values to be equal, and is used by ==.