pub enum SourceFreshness {
Current,
Stale,
Conflicting,
Missing,
}Expand description
Decision choices for source freshness in the data-quality hygiene workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
Current
Selects current for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
Stale
Selects stale for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
Conflicting
Selects conflicting for the data-quality hygiene decision model so the app can choose a review, evidence, or draft path without taking live action.
Missing
Selects missing 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 SourceFreshness
impl Clone for SourceFreshness
Source§fn clone(&self) -> SourceFreshness
fn clone(&self) -> SourceFreshness
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 SourceFreshness
impl Debug for SourceFreshness
Source§impl<'de> Deserialize<'de> for SourceFreshness
impl<'de> Deserialize<'de> for SourceFreshness
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 Hash for SourceFreshness
impl Hash for SourceFreshness
Source§impl Ord for SourceFreshness
impl Ord for SourceFreshness
Source§fn cmp(&self, other: &SourceFreshness) -> Ordering
fn cmp(&self, other: &SourceFreshness) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SourceFreshness
impl PartialEq for SourceFreshness
Source§impl PartialOrd for SourceFreshness
impl PartialOrd for SourceFreshness
Source§impl Serialize for SourceFreshness
impl Serialize for SourceFreshness
impl Copy for SourceFreshness
impl Eq for SourceFreshness
impl StructuralPartialEq for SourceFreshness
Auto Trait Implementations§
impl Freeze for SourceFreshness
impl RefUnwindSafe for SourceFreshness
impl Send for SourceFreshness
impl Sync for SourceFreshness
impl Unpin for SourceFreshness
impl UnsafeUnpin for SourceFreshness
impl UnwindSafe for SourceFreshness
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