pub enum MedicationStatementStatusCodes {
Draft,
EnteredInError,
Recorded,
}Expand description
MedicationStatementStatusCodes. MedicationStatement Status Codes
FHIR version: 5.0.0.
Variants§
Draft
draft
Draft. The medication usage is draft or preliminary.
EnteredInError
entered-in-error
Entered in Error. Some of the actions that are implied by the medication usage may have occurred. For example, the patient may have taken some of the medication. Clinical decision support systems should take this status into account.
Recorded
recorded
Recorded. The action of recording the medication statement is finished.
Trait Implementations§
Source§impl AsRef<str> for MedicationStatementStatusCodes
impl AsRef<str> for MedicationStatementStatusCodes
Source§impl Clone for MedicationStatementStatusCodes
impl Clone for MedicationStatementStatusCodes
Source§fn clone(&self) -> MedicationStatementStatusCodes
fn clone(&self) -> MedicationStatementStatusCodes
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<'de> Deserialize<'de> for MedicationStatementStatusCodes
impl<'de> Deserialize<'de> for MedicationStatementStatusCodes
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 From<MedicationStatementStatusCodes> for CodeableConcept
impl From<MedicationStatementStatusCodes> for CodeableConcept
Source§fn from(code: MedicationStatementStatusCodes) -> Self
fn from(code: MedicationStatementStatusCodes) -> Self
Converts to this type from the input type.
Source§impl From<MedicationStatementStatusCodes> for Coding
impl From<MedicationStatementStatusCodes> for Coding
Source§fn from(code: MedicationStatementStatusCodes) -> Self
fn from(code: MedicationStatementStatusCodes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MedicationStatementStatusCodes
impl PartialEq for MedicationStatementStatusCodes
Source§fn eq(&self, other: &MedicationStatementStatusCodes) -> bool
fn eq(&self, other: &MedicationStatementStatusCodes) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MedicationStatementStatusCodes
impl Eq for MedicationStatementStatusCodes
impl StructuralPartialEq for MedicationStatementStatusCodes
Auto Trait Implementations§
impl Freeze for MedicationStatementStatusCodes
impl RefUnwindSafe for MedicationStatementStatusCodes
impl Send for MedicationStatementStatusCodes
impl Sync for MedicationStatementStatusCodes
impl Unpin for MedicationStatementStatusCodes
impl UnsafeUnpin for MedicationStatementStatusCodes
impl UnwindSafe for MedicationStatementStatusCodes
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