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 · 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<SubmitDataUpdateType, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<SubmitDataUpdateType, <D as Deserializer<'de>>::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) -> CodeableConcept
fn from(code: SubmitDataUpdateType) -> CodeableConcept
Source§impl From<SubmitDataUpdateType> for Coding
impl From<SubmitDataUpdateType> for Coding
Source§fn from(code: SubmitDataUpdateType) -> Coding
fn from(code: SubmitDataUpdateType) -> Coding
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§impl Serialize for SubmitDataUpdateType
impl Serialize for SubmitDataUpdateType
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 SubmitDataUpdateType
impl Eq for SubmitDataUpdateType
impl StructuralPartialEq for SubmitDataUpdateType
Auto Trait Implementations§
impl Freeze for SubmitDataUpdateType
impl RefUnwindSafe for SubmitDataUpdateType
impl Send for SubmitDataUpdateType
impl Sync for SubmitDataUpdateType
impl Unpin for SubmitDataUpdateType
impl UnwindSafe for SubmitDataUpdateType
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.