pub enum DetectedIssueSeverity {
High,
Low,
Moderate,
}Expand description
DetectedIssueSeverity. Indicates the potential degree of impact of the identified issue on the patient.
FHIR version: 5.0.0.
Variants§
High
high
High. Indicates the issue may be life-threatening or has the potential to cause permanent injury.
Low
low
Low. Indicates the issue may result in some adverse consequences but is unlikely to substantially affect the situation of the subject.
Moderate
moderate
Moderate. Indicates the issue may result in noticeable adverse consequences but is unlikely to be life-threatening or cause permanent injury.
Trait Implementations§
Source§impl AsRef<str> for DetectedIssueSeverity
impl AsRef<str> for DetectedIssueSeverity
Source§impl Clone for DetectedIssueSeverity
impl Clone for DetectedIssueSeverity
Source§fn clone(&self) -> DetectedIssueSeverity
fn clone(&self) -> DetectedIssueSeverity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DetectedIssueSeverity
impl Debug for DetectedIssueSeverity
Source§impl<'de> Deserialize<'de> for DetectedIssueSeverity
impl<'de> Deserialize<'de> for DetectedIssueSeverity
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DetectedIssueSeverity
impl Display for DetectedIssueSeverity
Source§impl From<DetectedIssueSeverity> for CodeableConcept
impl From<DetectedIssueSeverity> for CodeableConcept
Source§fn from(code: DetectedIssueSeverity) -> Self
fn from(code: DetectedIssueSeverity) -> Self
Converts to this type from the input type.
Source§impl From<DetectedIssueSeverity> for Coding
impl From<DetectedIssueSeverity> for Coding
Source§fn from(code: DetectedIssueSeverity) -> Self
fn from(code: DetectedIssueSeverity) -> Self
Converts to this type from the input type.
Source§impl FromStr for DetectedIssueSeverity
impl FromStr for DetectedIssueSeverity
Source§impl Hash for DetectedIssueSeverity
impl Hash for DetectedIssueSeverity
Source§impl PartialEq for DetectedIssueSeverity
impl PartialEq for DetectedIssueSeverity
Source§fn eq(&self, other: &DetectedIssueSeverity) -> bool
fn eq(&self, other: &DetectedIssueSeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DetectedIssueSeverity
impl Serialize for DetectedIssueSeverity
impl Copy for DetectedIssueSeverity
impl Eq for DetectedIssueSeverity
impl StructuralPartialEq for DetectedIssueSeverity
Auto Trait Implementations§
impl Freeze for DetectedIssueSeverity
impl RefUnwindSafe for DetectedIssueSeverity
impl Send for DetectedIssueSeverity
impl Sync for DetectedIssueSeverity
impl Unpin for DetectedIssueSeverity
impl UnsafeUnpin for DetectedIssueSeverity
impl UnwindSafe for DetectedIssueSeverity
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
Mutably borrows from an owned value. Read more