pub enum KnowledgeRepresentationLevel {
Executable,
Narrative,
SemiStructured,
Structured,
}
Expand description
KnowledgeRepresentationLevel. A knowledge representation level, narrative, semi-structured, structured, and executable
FHIR version: 5.0.0.
Variants§
Executable
executable
Executable. The knowledge is expressed in a way that is coded and interpretable by CDS systems using a variety of formats, affording direct executability, but potentially limited shareability. The knowledge is typically expressed focusing on a specific delivery method (modality), technology platform, and implementation environment. Knowledge at this level is typically built and developed by implementers working in specific technology platforms, for the purpose of implementation at a specific site, though affordances such as computable mappings and configuration capabilities can broaden the usability of the knowledge artifact.
Narrative
narrative
Narrative. The knowledge is expressed as narrative text, affording broad shareability, but limited computability. The knowledge is typically expressed independent of delivery method (modality), technology platform, and implementation site. Knowledge at this level is typically authored by guideline developers for a broad range of purposes including communication of policy, synthesis of evidence, and dissemination of best-practices.
SemiStructured
semi-structured
Semi-Structured. The knowledge is expressed as organized text, often accompanied by diagrams such as flow charts and decision tables, affording broad shareability and moderate computability. The knowledge is typically expressed independent of delivery method (modality), technology platform, and implementation site. Knowledge at this level is typically authored by clinical domain experts for the purpose of communication the description of recommendations for implementation in various modalities.
Structured
structured
Structured. The knowledge is expressed in a structured way that is interpretable by computer, including being coded using standard terminologies and specifications for the representation of structured content, affording broad shareability and high computability. The knowledge is typically expressed independent of delivery method (modality), technology platform, and implementation site. Knowledge at this level is typically authored by knowledge engineersto enable precise communication and validation of the recommendations.
Trait Implementations§
Source§impl AsRef<str> for KnowledgeRepresentationLevel
impl AsRef<str> for KnowledgeRepresentationLevel
Source§impl Clone for KnowledgeRepresentationLevel
impl Clone for KnowledgeRepresentationLevel
Source§fn clone(&self) -> KnowledgeRepresentationLevel
fn clone(&self) -> KnowledgeRepresentationLevel
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for KnowledgeRepresentationLevel
impl Debug for KnowledgeRepresentationLevel
Source§impl<'de> Deserialize<'de> for KnowledgeRepresentationLevel
impl<'de> Deserialize<'de> for KnowledgeRepresentationLevel
Source§fn deserialize<D>(
deserializer: D,
) -> Result<KnowledgeRepresentationLevel, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<KnowledgeRepresentationLevel, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl From<KnowledgeRepresentationLevel> for CodeableConcept
impl From<KnowledgeRepresentationLevel> for CodeableConcept
Source§fn from(code: KnowledgeRepresentationLevel) -> CodeableConcept
fn from(code: KnowledgeRepresentationLevel) -> CodeableConcept
Source§impl From<KnowledgeRepresentationLevel> for Coding
impl From<KnowledgeRepresentationLevel> for Coding
Source§fn from(code: KnowledgeRepresentationLevel) -> Coding
fn from(code: KnowledgeRepresentationLevel) -> Coding
Source§impl Hash for KnowledgeRepresentationLevel
impl Hash for KnowledgeRepresentationLevel
Source§impl PartialEq for KnowledgeRepresentationLevel
impl PartialEq for KnowledgeRepresentationLevel
Source§fn eq(&self, other: &KnowledgeRepresentationLevel) -> bool
fn eq(&self, other: &KnowledgeRepresentationLevel) -> bool
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for KnowledgeRepresentationLevel
impl Serialize for KnowledgeRepresentationLevel
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 KnowledgeRepresentationLevel
impl Eq for KnowledgeRepresentationLevel
impl StructuralPartialEq for KnowledgeRepresentationLevel
Auto Trait Implementations§
impl Freeze for KnowledgeRepresentationLevel
impl RefUnwindSafe for KnowledgeRepresentationLevel
impl Send for KnowledgeRepresentationLevel
impl Sync for KnowledgeRepresentationLevel
impl Unpin for KnowledgeRepresentationLevel
impl UnwindSafe for KnowledgeRepresentationLevel
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.