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 · 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<CodeSystemContentMode, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<CodeSystemContentMode, <D as Deserializer<'de>>::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) -> CodeableConcept
fn from(code: CodeSystemContentMode) -> CodeableConcept
Source§impl From<CodeSystemContentMode> for Coding
impl From<CodeSystemContentMode> for Coding
Source§fn from(code: CodeSystemContentMode) -> Coding
fn from(code: CodeSystemContentMode) -> Coding
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§impl Serialize for CodeSystemContentMode
impl Serialize for CodeSystemContentMode
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,
impl Copy for CodeSystemContentMode
impl Eq for CodeSystemContentMode
impl StructuralPartialEq for CodeSystemContentMode
Auto Trait Implementations§
impl Freeze for CodeSystemContentMode
impl RefUnwindSafe for CodeSystemContentMode
impl Send for CodeSystemContentMode
impl Sync for CodeSystemContentMode
impl Unpin for CodeSystemContentMode
impl UnwindSafe for CodeSystemContentMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.