pub enum ActionKind {
InvestigateMissingSourceEvidence,
ReconcileDuplicateCustomerOrPetCandidate,
CompleteMissingPetOrCustomerProfileFields,
ReviewStaleVaccinationSourceFreshness,
NormalizeAmbiguousServiceLineNaming,
ReviewCheckoutOrUnclosedReservationEvidence,
EscalateSensitiveOrQuarantinedPayload,
}Expand description
Decision choices for action kind in the data-quality hygiene workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
InvestigateMissingSourceEvidence
Selects investigate missing source evidence for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
ReconcileDuplicateCustomerOrPetCandidate
Selects reconcile duplicate customer or pet candidate for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
CompleteMissingPetOrCustomerProfileFields
Selects complete missing pet or customer profile fields for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
ReviewStaleVaccinationSourceFreshness
Selects review stale vaccination source freshness for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
NormalizeAmbiguousServiceLineNaming
Selects normalize ambiguous service line naming for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
ReviewCheckoutOrUnclosedReservationEvidence
Selects review checkout or unclosed reservation evidence for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
EscalateSensitiveOrQuarantinedPayload
Selects escalate sensitive or quarantined payload for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for ActionKind
impl Clone for ActionKind
Source§fn clone(&self) -> ActionKind
fn clone(&self) -> ActionKind
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more