pub enum SubmitDataUpdateType {
Incremental,
Snapshot,
}Expand description
SubmitDataUpdateType. Concepts for how a measure report consumer and receiver coordinate data exchange updates. The choices are snapshot or incremental updates
FHIR version: 5.0.0.
Variants§
Incremental
incremental
Incremental. In contrast to the Snapshot Update, the FHIR Parameters resource used in a Submit Data or the Collect Data scenario contains only the new and updated DEQM and QI Core Profiles since the last transaction. If the Consumer supports incremental updates, the contents of the updated payload updates the previous payload data.
Snapshot
snapshot
Snapshot. In contrast to the Incremental Update, the FHIR Parameters resource used in a Submit Data or the Collect Data scenario contains all the DEQM and QI Core Profiles for each transaction. If the Consumer supports snapshot updates, the contents of the updated payload entirely replaces the previous payload
Trait Implementations§
Source§impl AsRef<str> for SubmitDataUpdateType
impl AsRef<str> for SubmitDataUpdateType
Source§impl Clone for SubmitDataUpdateType
impl Clone for SubmitDataUpdateType
Source§fn clone(&self) -> SubmitDataUpdateType
fn clone(&self) -> SubmitDataUpdateType
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 SubmitDataUpdateType
impl Debug for SubmitDataUpdateType
Source§impl<'de> Deserialize<'de> for SubmitDataUpdateType
impl<'de> Deserialize<'de> for SubmitDataUpdateType
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 SubmitDataUpdateType
impl Display for SubmitDataUpdateType
Source§impl From<SubmitDataUpdateType> for CodeableConcept
impl From<SubmitDataUpdateType> for CodeableConcept
Source§fn from(code: SubmitDataUpdateType) -> Self
fn from(code: SubmitDataUpdateType) -> Self
Source§impl From<SubmitDataUpdateType> for Coding
impl From<SubmitDataUpdateType> for Coding
Source§fn from(code: SubmitDataUpdateType) -> Self
fn from(code: SubmitDataUpdateType) -> Self
Source§impl FromStr for SubmitDataUpdateType
impl FromStr for SubmitDataUpdateType
Source§impl Hash for SubmitDataUpdateType
impl Hash for SubmitDataUpdateType
Source§impl PartialEq for SubmitDataUpdateType
impl PartialEq for SubmitDataUpdateType
Source§fn eq(&self, other: &SubmitDataUpdateType) -> bool
fn eq(&self, other: &SubmitDataUpdateType) -> bool
self and other values to be equal, and is used by ==.