pub enum ImagingStudyStatus {
Available,
Cancelled,
EnteredInError,
Registered,
Unknown,
}Expand description
ImagingStudyStatus. The status of the ImagingStudy.
FHIR version: 5.0.0.
Variants§
Available
available
Available. At least one instance has been associated with this imaging study.
Cancelled
cancelled
Cancelled. The imaging study is unavailable because the imaging study was not started or not completed (also sometimes called “aborted”).
EnteredInError
entered-in-error
Entered in Error. The imaging study has been withdrawn following a previous final release. This electronic record should never have existed, though it is possible that real-world decisions were based on it. (If real-world activity has occurred, the status should be “cancelled” rather than “entered-in-error”.).
Registered
registered
Registered. The existence of the imaging study is registered, but there is nothing yet available.
Unknown
unknown
Unknown. The system does not know which of the status values currently applies for this request. Note: This concept is not to be used for “other” - one of the listed statuses is presumed to apply, it’s just not known which one.
Trait Implementations§
Source§impl AsRef<str> for ImagingStudyStatus
impl AsRef<str> for ImagingStudyStatus
Source§impl Clone for ImagingStudyStatus
impl Clone for ImagingStudyStatus
Source§fn clone(&self) -> ImagingStudyStatus
fn clone(&self) -> ImagingStudyStatus
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 ImagingStudyStatus
impl Debug for ImagingStudyStatus
Source§impl<'de> Deserialize<'de> for ImagingStudyStatus
impl<'de> Deserialize<'de> for ImagingStudyStatus
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 ImagingStudyStatus
impl Display for ImagingStudyStatus
Source§impl From<ImagingStudyStatus> for CodeableConcept
impl From<ImagingStudyStatus> for CodeableConcept
Source§fn from(code: ImagingStudyStatus) -> Self
fn from(code: ImagingStudyStatus) -> Self
Source§impl From<ImagingStudyStatus> for Coding
impl From<ImagingStudyStatus> for Coding
Source§fn from(code: ImagingStudyStatus) -> Self
fn from(code: ImagingStudyStatus) -> Self
Source§impl FromStr for ImagingStudyStatus
impl FromStr for ImagingStudyStatus
Source§impl Hash for ImagingStudyStatus
impl Hash for ImagingStudyStatus
Source§impl PartialEq for ImagingStudyStatus
impl PartialEq for ImagingStudyStatus
Source§fn eq(&self, other: &ImagingStudyStatus) -> bool
fn eq(&self, other: &ImagingStudyStatus) -> bool
self and other values to be equal, and is used by ==.