pub enum DataQualityHygieneOutcomeCode {
Completed,
Deferred,
SuppressedByManager,
SourceFactWasWrong,
NotActionable,
}Expand description
Persisted outcome states for data-quality hygiene actions.
Variants§
Completed
Workflow completed and can contribute final labor evidence.
Deferred
Workflow was postponed and should not be counted as completed savings.
SuppressedByManager
Manager intentionally hid or skipped the suggested workflow action.
SourceFactWasWrong
Provider evidence was incorrect, so the action is excluded or corrected.
NotActionable
Issue was reviewed but did not require an operational repair.
Trait Implementations§
Source§impl Clone for DataQualityHygieneOutcomeCode
impl Clone for DataQualityHygieneOutcomeCode
Source§fn clone(&self) -> DataQualityHygieneOutcomeCode
fn clone(&self) -> DataQualityHygieneOutcomeCode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DataQualityHygieneOutcomeCode
impl<'de> Deserialize<'de> for DataQualityHygieneOutcomeCode
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DataQualityHygieneOutcomeCode
impl PartialEq for DataQualityHygieneOutcomeCode
Source§fn eq(&self, other: &DataQualityHygieneOutcomeCode) -> bool
fn eq(&self, other: &DataQualityHygieneOutcomeCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DataQualityHygieneOutcomeCode
impl Eq for DataQualityHygieneOutcomeCode
impl StructuralPartialEq for DataQualityHygieneOutcomeCode
Auto Trait Implementations§
impl Freeze for DataQualityHygieneOutcomeCode
impl RefUnwindSafe for DataQualityHygieneOutcomeCode
impl Send for DataQualityHygieneOutcomeCode
impl Sync for DataQualityHygieneOutcomeCode
impl Unpin for DataQualityHygieneOutcomeCode
impl UnsafeUnpin for DataQualityHygieneOutcomeCode
impl UnwindSafe for DataQualityHygieneOutcomeCode
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
Mutably borrows from an owned value. Read more