pub enum CodeSystemHierarchyMeaning {
ClassifiedWith,
GroupedBy,
IsA,
PartOf,
}Expand description
CodeSystemHierarchyMeaning. The meaning of the hierarchy of concepts in a code system.
FHIR version: 5.0.0.
Variants§
ClassifiedWith
classified-with
Classified With. Child concepts in the hierarchy may have only one parent, and there is a presumption that the code system is a “closed world” meaning all things must be in the hierarchy. This results in concepts such as “not otherwise classified.”.
GroupedBy
grouped-by
Grouped By. No particular relationship between the concepts can be assumed, except what can be determined by inspection of the definitions of the elements (possible reasons to use this: importing from a source where this is not defined, or where various parts of the hierarchy have different meanings).
IsA
is-a
Is-A. A hierarchy where the child concepts have an IS-A relationship with the parents - that is, all the properties of the parent are also true for its child concepts. Not that is-a is a property of the concepts, so additional subsumption relationships may be defined using properties.
PartOf
part-of
Part Of. Child elements list the individual parts of a composite whole (e.g. body site).
Trait Implementations§
Source§impl AsRef<str> for CodeSystemHierarchyMeaning
impl AsRef<str> for CodeSystemHierarchyMeaning
Source§impl Clone for CodeSystemHierarchyMeaning
impl Clone for CodeSystemHierarchyMeaning
Source§fn clone(&self) -> CodeSystemHierarchyMeaning
fn clone(&self) -> CodeSystemHierarchyMeaning
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 CodeSystemHierarchyMeaning
impl Debug for CodeSystemHierarchyMeaning
Source§impl<'de> Deserialize<'de> for CodeSystemHierarchyMeaning
impl<'de> Deserialize<'de> for CodeSystemHierarchyMeaning
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 CodeSystemHierarchyMeaning
impl Display for CodeSystemHierarchyMeaning
Source§impl From<CodeSystemHierarchyMeaning> for CodeableConcept
impl From<CodeSystemHierarchyMeaning> for CodeableConcept
Source§fn from(code: CodeSystemHierarchyMeaning) -> Self
fn from(code: CodeSystemHierarchyMeaning) -> Self
Source§impl From<CodeSystemHierarchyMeaning> for Coding
impl From<CodeSystemHierarchyMeaning> for Coding
Source§fn from(code: CodeSystemHierarchyMeaning) -> Self
fn from(code: CodeSystemHierarchyMeaning) -> Self
Source§impl FromStr for CodeSystemHierarchyMeaning
impl FromStr for CodeSystemHierarchyMeaning
Source§impl Hash for CodeSystemHierarchyMeaning
impl Hash for CodeSystemHierarchyMeaning
Source§impl PartialEq for CodeSystemHierarchyMeaning
impl PartialEq for CodeSystemHierarchyMeaning
Source§fn eq(&self, other: &CodeSystemHierarchyMeaning) -> bool
fn eq(&self, other: &CodeSystemHierarchyMeaning) -> bool
self and other values to be equal, and is used by ==.