pub enum ActionKind {
InvestigateMissingSourceEvidence,
ReconcileDuplicateCustomerOrPetCandidate,
CompleteMissingPetOrCustomerProfileFields,
ReviewStaleVaccinationSourceFreshness,
NormalizeAmbiguousServiceLineNaming,
ReviewCheckoutOrUnclosedReservationEvidence,
EscalateSensitiveOrQuarantinedPayload,
}Expand description
Decision taxonomy for action kind in the data-quality hygiene workflow; each value carries operational meaning for source-grounded routing and review.
Variants§
InvestigateMissingSourceEvidence
Represents investigate missing source evidence in the data-quality hygiene decision model so the app can choose the correct evidence, review, or draft path without taking live action.
ReconcileDuplicateCustomerOrPetCandidate
Represents reconcile duplicate customer or pet candidate in the data-quality hygiene decision model so the app can choose the correct evidence, review, or draft path without taking live action.
CompleteMissingPetOrCustomerProfileFields
Represents complete missing pet or customer profile fields in the data-quality hygiene decision model so the app can choose the correct evidence, review, or draft path without taking live action.
ReviewStaleVaccinationSourceFreshness
Represents review stale vaccination source freshness in the data-quality hygiene decision model so the app can choose the correct evidence, review, or draft path without taking live action.
NormalizeAmbiguousServiceLineNaming
Represents normalize ambiguous service line naming in the data-quality hygiene decision model so the app can choose the correct evidence, review, or draft path without taking live action.
ReviewCheckoutOrUnclosedReservationEvidence
Represents review checkout or unclosed reservation evidence in the data-quality hygiene decision model so the app can choose the correct evidence, review, or draft path without taking live action.
EscalateSensitiveOrQuarantinedPayload
Represents escalate sensitive or quarantined payload in the data-quality hygiene decision model so the app can choose the correct evidence, review, 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