pub enum ResolutionStatus {
Open,
Acknowledged,
Ignored,
Repaired,
Superseded,
}Expand description
Lifecycle state for a data-quality issue as staff acknowledge or repair it.
Variants§
Open
Open issue still needs staff or source-system action.
Acknowledged
Acknowledged issue has been seen by staff but remains part of evidence shown to workflows.
Ignored
Ignored issue is intentionally bypassed for a workflow, preserving audit context for why.
Repaired
Repaired issue records that source or profile cleanup resolved the defect.
Superseded
Superseded issue was replaced by fresher evidence or a more precise finding.
Trait Implementations§
Source§impl Clone for ResolutionStatus
impl Clone for ResolutionStatus
Source§fn clone(&self) -> ResolutionStatus
fn clone(&self) -> ResolutionStatus
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 Debug for ResolutionStatus
impl Debug for ResolutionStatus
Source§impl<'de> Deserialize<'de> for ResolutionStatus
impl<'de> Deserialize<'de> for ResolutionStatus
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 ResolutionStatus
impl PartialEq for ResolutionStatus
Source§impl Serialize for ResolutionStatus
impl Serialize for ResolutionStatus
impl Copy for ResolutionStatus
impl Eq for ResolutionStatus
impl StructuralPartialEq for ResolutionStatus
Auto Trait Implementations§
impl Freeze for ResolutionStatus
impl RefUnwindSafe for ResolutionStatus
impl Send for ResolutionStatus
impl Sync for ResolutionStatus
impl Unpin for ResolutionStatus
impl UnsafeUnpin for ResolutionStatus
impl UnwindSafe for ResolutionStatus
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