pub enum IssueSeverity {
Error,
Fatal,
Information,
Success,
Warning,
}Expand description
IssueSeverity. How the issue affects the success of the action.
FHIR version: 5.0.0.
Variants§
Error
error
Error. The issue is sufficiently important to cause the action to fail.
Fatal
fatal
Fatal. The issue caused the action to fail and no further checking could be performed.
Information
information
Information. The issue has no relation to the degree of success of the action.
Success
success
Operation Successful. The operation completed successfully.
Warning
warning
Warning. The issue is not important enough to cause the action to fail but may cause it to be performed suboptimally or in a way that is not as desired.
Trait Implementations§
Source§impl AsRef<str> for IssueSeverity
impl AsRef<str> for IssueSeverity
Source§impl Clone for IssueSeverity
impl Clone for IssueSeverity
Source§fn clone(&self) -> IssueSeverity
fn clone(&self) -> IssueSeverity
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 IssueSeverity
impl Debug for IssueSeverity
Source§impl<'de> Deserialize<'de> for IssueSeverity
impl<'de> Deserialize<'de> for IssueSeverity
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 IssueSeverity
impl Display for IssueSeverity
Source§impl From<IssueSeverity> for CodeableConcept
impl From<IssueSeverity> for CodeableConcept
Source§fn from(code: IssueSeverity) -> Self
fn from(code: IssueSeverity) -> Self
Converts to this type from the input type.
Source§impl From<IssueSeverity> for Coding
impl From<IssueSeverity> for Coding
Source§fn from(code: IssueSeverity) -> Self
fn from(code: IssueSeverity) -> Self
Converts to this type from the input type.
Source§impl FromStr for IssueSeverity
impl FromStr for IssueSeverity
Source§impl Hash for IssueSeverity
impl Hash for IssueSeverity
Source§impl PartialEq for IssueSeverity
impl PartialEq for IssueSeverity
Source§fn eq(&self, other: &IssueSeverity) -> bool
fn eq(&self, other: &IssueSeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IssueSeverity
impl Serialize for IssueSeverity
impl Copy for IssueSeverity
impl Eq for IssueSeverity
impl StructuralPartialEq for IssueSeverity
Auto Trait Implementations§
impl Freeze for IssueSeverity
impl RefUnwindSafe for IssueSeverity
impl Send for IssueSeverity
impl Sync for IssueSeverity
impl Unpin for IssueSeverity
impl UnsafeUnpin for IssueSeverity
impl UnwindSafe for IssueSeverity
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