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 · 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<MeasureAggregateMethod, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<MeasureAggregateMethod, <D as Deserializer<'de>>::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) -> CodeableConcept
fn from(code: MeasureAggregateMethod) -> CodeableConcept
Source§impl From<MeasureAggregateMethod> for Coding
impl From<MeasureAggregateMethod> for Coding
Source§fn from(code: MeasureAggregateMethod) -> Coding
fn from(code: MeasureAggregateMethod) -> Coding
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§impl Serialize for MeasureAggregateMethod
impl Serialize for MeasureAggregateMethod
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
impl Copy for MeasureAggregateMethod
impl Eq for MeasureAggregateMethod
impl StructuralPartialEq for MeasureAggregateMethod
Auto Trait Implementations§
impl Freeze for MeasureAggregateMethod
impl RefUnwindSafe for MeasureAggregateMethod
impl Send for MeasureAggregateMethod
impl Sync for MeasureAggregateMethod
impl Unpin for MeasureAggregateMethod
impl UnwindSafe for MeasureAggregateMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.