pub enum MeasureAggregateMethod {
Average,
Count,
Maximum,
Median,
Minimum,
Sum,
}Expand description
MeasureAggregateMethod. Aggregation method for a measure (e.g. sum, average, median, minimum, maximum, count)
FHIR version: 5.0.0.
Variants§
Average
average
Average. The measure score is determined by taking the average of the observations derived from the measure population.
Count
count
Count. The measure score is determined as the number of observations derived from the measure population.
Maximum
maximum
Maximum. The measure score is determined by taking the maximum of the observations derived from the measure population.
Median
median
Median. The measure score is determined by taking the median of the observations derived from the measure population.
Minimum
minimum
Minimum. The measure score is determined by taking the minimum of the observations derived from the measure population.
Sum
sum
Sum. The measure score is determined by adding together the observations derived from the measure population.
Trait Implementations§
Source§impl AsRef<str> for MeasureAggregateMethod
impl AsRef<str> for MeasureAggregateMethod
Source§impl Clone for MeasureAggregateMethod
impl Clone for MeasureAggregateMethod
Source§fn clone(&self) -> MeasureAggregateMethod
fn clone(&self) -> MeasureAggregateMethod
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 MeasureAggregateMethod
impl Debug for MeasureAggregateMethod
Source§impl<'de> Deserialize<'de> for MeasureAggregateMethod
impl<'de> Deserialize<'de> for MeasureAggregateMethod
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 MeasureAggregateMethod
impl Display for MeasureAggregateMethod
Source§impl From<MeasureAggregateMethod> for CodeableConcept
impl From<MeasureAggregateMethod> for CodeableConcept
Source§fn from(code: MeasureAggregateMethod) -> Self
fn from(code: MeasureAggregateMethod) -> Self
Source§impl From<MeasureAggregateMethod> for Coding
impl From<MeasureAggregateMethod> for Coding
Source§fn from(code: MeasureAggregateMethod) -> Self
fn from(code: MeasureAggregateMethod) -> Self
Source§impl FromStr for MeasureAggregateMethod
impl FromStr for MeasureAggregateMethod
Source§impl Hash for MeasureAggregateMethod
impl Hash for MeasureAggregateMethod
Source§impl PartialEq for MeasureAggregateMethod
impl PartialEq for MeasureAggregateMethod
Source§fn eq(&self, other: &MeasureAggregateMethod) -> bool
fn eq(&self, other: &MeasureAggregateMethod) -> bool
self and other values to be equal, and is used by ==.