pub enum DataQualityResolutionStatusCode {
Open,
Acknowledged,
Ignored,
Repaired,
Superseded,
}Expand description
Persisted lifecycle status for a data-quality issue after review.
Variants§
Open
Issue remains open after review.
Acknowledged
Issue was accepted for later repair or monitoring.
Ignored
Issue was intentionally ignored after review.
Repaired
Issue was corrected during or after review.
Superseded
Issue was replaced by fresher evidence or another issue record.
Trait Implementations§
Source§impl Clone for DataQualityResolutionStatusCode
impl Clone for DataQualityResolutionStatusCode
Source§fn clone(&self) -> DataQualityResolutionStatusCode
fn clone(&self) -> DataQualityResolutionStatusCode
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 DataQualityResolutionStatusCode
impl<'de> Deserialize<'de> for DataQualityResolutionStatusCode
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 DataQualityResolutionStatusCode
impl PartialEq for DataQualityResolutionStatusCode
Source§fn eq(&self, other: &DataQualityResolutionStatusCode) -> bool
fn eq(&self, other: &DataQualityResolutionStatusCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DataQualityResolutionStatusCode
impl Eq for DataQualityResolutionStatusCode
impl StructuralPartialEq for DataQualityResolutionStatusCode
Auto Trait Implementations§
impl Freeze for DataQualityResolutionStatusCode
impl RefUnwindSafe for DataQualityResolutionStatusCode
impl Send for DataQualityResolutionStatusCode
impl Sync for DataQualityResolutionStatusCode
impl Unpin for DataQualityResolutionStatusCode
impl UnsafeUnpin for DataQualityResolutionStatusCode
impl UnwindSafe for DataQualityResolutionStatusCode
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