pub enum MeasureReportType {
DataExchange,
Individual,
SubjectList,
Summary,
}Expand description
MeasureReportType. The type of the measure report.
FHIR version: 5.0.0.
Variants§
DataExchange
data-exchange
Data Exchange. A data exchange report that contains data-of-interest for the measure (i.e. data that is needed to calculate the measure)
Individual
individual
Individual. An individual report that provides information on the performance for a given measure with respect to a single subject.
SubjectList
subject-list
Subject List. A subject list report that includes a listing of subjects that satisfied each population criteria in the measure.
Summary
summary
Summary. A summary report that returns the number of members in each population criteria for the measure.
Trait Implementations§
Source§impl AsRef<str> for MeasureReportType
impl AsRef<str> for MeasureReportType
Source§impl Clone for MeasureReportType
impl Clone for MeasureReportType
Source§fn clone(&self) -> MeasureReportType
fn clone(&self) -> MeasureReportType
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 MeasureReportType
impl Debug for MeasureReportType
Source§impl<'de> Deserialize<'de> for MeasureReportType
impl<'de> Deserialize<'de> for MeasureReportType
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 MeasureReportType
impl Display for MeasureReportType
Source§impl From<MeasureReportType> for CodeableConcept
impl From<MeasureReportType> for CodeableConcept
Source§fn from(code: MeasureReportType) -> Self
fn from(code: MeasureReportType) -> Self
Converts to this type from the input type.
Source§impl From<MeasureReportType> for Coding
impl From<MeasureReportType> for Coding
Source§fn from(code: MeasureReportType) -> Self
fn from(code: MeasureReportType) -> Self
Converts to this type from the input type.
Source§impl FromStr for MeasureReportType
impl FromStr for MeasureReportType
Source§impl Hash for MeasureReportType
impl Hash for MeasureReportType
Source§impl PartialEq for MeasureReportType
impl PartialEq for MeasureReportType
Source§fn eq(&self, other: &MeasureReportType) -> bool
fn eq(&self, other: &MeasureReportType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MeasureReportType
impl Serialize for MeasureReportType
impl Copy for MeasureReportType
impl Eq for MeasureReportType
impl StructuralPartialEq for MeasureReportType
Auto Trait Implementations§
impl Freeze for MeasureReportType
impl RefUnwindSafe for MeasureReportType
impl Send for MeasureReportType
impl Sync for MeasureReportType
impl Unpin for MeasureReportType
impl UnsafeUnpin for MeasureReportType
impl UnwindSafe for MeasureReportType
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