pub enum DefinitionMethod {
Mean,
MeanOfMean,
MeanOfMedian,
Median,
MedianOfMean,
MedianOfMedian,
NonSystematicAssessment,
SystematicAssessment,
}Expand description
DefinitionMethod. The method used to define, describe, or determine a characteristic value.
FHIR version: 5.0.0.
Variants§
Mean
mean
Mean. Aggregated using mean of observed values.
MeanOfMean
mean-of-mean
Mean of Means. Aggregated using mean of means (e.g. study mean values).
MeanOfMedian
mean-of-median
Mean of Medians. Aggregated using mean of medians (e.g. study median values).
Median
median
Median. Aggregated using median of observed values.
MedianOfMean
median-of-mean
Median of Means. Aggregated using median of means (e.g. study mean values).
MedianOfMedian
median-of-median
Median of Medians. Aggregated using median of medians (e.g. study median values).
NonSystematicAssessment
non-systematic-assessment
Non-Systematic Assessment. Any non-systematic method for determining whether or not adverse events have occurred, such as self-reporting by participants or occasional assessment/testing
SystematicAssessment
systematic-assessment
Systematic Assessment. Any method of routinely determining whether or not specific outcomes (e.g. adverse events) have occurred, for example through a standard questionnaire, regular investigator assessment, regular laboratory testing, or other method
Trait Implementations§
Source§impl AsRef<str> for DefinitionMethod
impl AsRef<str> for DefinitionMethod
Source§impl Clone for DefinitionMethod
impl Clone for DefinitionMethod
Source§fn clone(&self) -> DefinitionMethod
fn clone(&self) -> DefinitionMethod
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 DefinitionMethod
impl Debug for DefinitionMethod
Source§impl<'de> Deserialize<'de> for DefinitionMethod
impl<'de> Deserialize<'de> for DefinitionMethod
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 DefinitionMethod
impl Display for DefinitionMethod
Source§impl From<DefinitionMethod> for CodeableConcept
impl From<DefinitionMethod> for CodeableConcept
Source§fn from(code: DefinitionMethod) -> Self
fn from(code: DefinitionMethod) -> Self
Source§impl From<DefinitionMethod> for Coding
impl From<DefinitionMethod> for Coding
Source§fn from(code: DefinitionMethod) -> Self
fn from(code: DefinitionMethod) -> Self
Source§impl FromStr for DefinitionMethod
impl FromStr for DefinitionMethod
Source§impl Hash for DefinitionMethod
impl Hash for DefinitionMethod
Source§impl PartialEq for DefinitionMethod
impl PartialEq for DefinitionMethod
Source§fn eq(&self, other: &DefinitionMethod) -> bool
fn eq(&self, other: &DefinitionMethod) -> bool
self and other values to be equal, and is used by ==.