pub enum EvidenceVariableHandling {
Continuous,
Dichotomous,
Ordinal,
Polychotomous,
}
Expand description
EvidenceVariableHandling. The handling of the variable in statistical analysis for exposures or outcomes (E.g. Dichotomous, Continuous, Descriptive).
FHIR version: 5.0.0.
Variants§
Continuous
continuous
continuous variable. A continuous variable is one for which, within the limits the variable ranges, any value is possible (from STATO http://purl.obolibrary.org/obo/STATO_0000251).
Dichotomous
dichotomous
dichotomous variable. A dichotomous variable is a categorical variable which is defined to have only 2 categories or possible values (from STATO http://purl.obolibrary.org/obo/STATO_0000090).
Ordinal
ordinal
ordinal variable. An ordinal variable is a categorical variable where the discrete possible values are ordered or correspond to an implicit ranking (from STATO http://purl.obolibrary.org/obo/STATO_0000228).
Polychotomous
polychotomous
polychotomous variable. A polychotomous variable is a categorical variable which is defined to have minimally 2 categories or possible values. (from STATO http://purl.obolibrary.org/obo/STATO_0000087). Suggestion to limit code use to situations when neither dichotomous nor ordinal variables apply.
Trait Implementations§
Source§impl AsRef<str> for EvidenceVariableHandling
impl AsRef<str> for EvidenceVariableHandling
Source§impl Clone for EvidenceVariableHandling
impl Clone for EvidenceVariableHandling
Source§fn clone(&self) -> EvidenceVariableHandling
fn clone(&self) -> EvidenceVariableHandling
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for EvidenceVariableHandling
impl Debug for EvidenceVariableHandling
Source§impl<'de> Deserialize<'de> for EvidenceVariableHandling
impl<'de> Deserialize<'de> for EvidenceVariableHandling
Source§fn deserialize<D>(
deserializer: D,
) -> Result<EvidenceVariableHandling, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<EvidenceVariableHandling, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl Display for EvidenceVariableHandling
impl Display for EvidenceVariableHandling
Source§impl From<EvidenceVariableHandling> for CodeableConcept
impl From<EvidenceVariableHandling> for CodeableConcept
Source§fn from(code: EvidenceVariableHandling) -> CodeableConcept
fn from(code: EvidenceVariableHandling) -> CodeableConcept
Source§impl From<EvidenceVariableHandling> for Coding
impl From<EvidenceVariableHandling> for Coding
Source§fn from(code: EvidenceVariableHandling) -> Coding
fn from(code: EvidenceVariableHandling) -> Coding
Source§impl FromStr for EvidenceVariableHandling
impl FromStr for EvidenceVariableHandling
Source§impl Hash for EvidenceVariableHandling
impl Hash for EvidenceVariableHandling
Source§impl PartialEq for EvidenceVariableHandling
impl PartialEq for EvidenceVariableHandling
Source§impl Serialize for EvidenceVariableHandling
impl Serialize for EvidenceVariableHandling
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 EvidenceVariableHandling
impl Eq for EvidenceVariableHandling
impl StructuralPartialEq for EvidenceVariableHandling
Auto Trait Implementations§
impl Freeze for EvidenceVariableHandling
impl RefUnwindSafe for EvidenceVariableHandling
impl Send for EvidenceVariableHandling
impl Sync for EvidenceVariableHandling
impl Unpin for EvidenceVariableHandling
impl UnwindSafe for EvidenceVariableHandling
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.