pub enum Screened {
StillRelevant,
AlreadyFixed,
NotWorthIt,
Duplicate,
}Expand description
What one screening pass decided about one recorded follow-up.
Only StillRelevant files anything. The other three all take the entry
out of the queue, which is why the prompt asks for a reason and the log
prints it: they are the verdicts nobody sees the working for.
Variants§
Implementations§
Trait Implementations§
impl Copy for Screened
Source§impl<'de> Deserialize<'de> for Screened
impl<'de> Deserialize<'de> for Screened
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Screened
Source§impl Ord for Screened
impl Ord for Screened
1.21.0 (const: unstable) · 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialOrd for Screened
impl PartialOrd for Screened
impl StructuralPartialEq for Screened
Auto Trait Implementations§
impl Freeze for Screened
impl RefUnwindSafe for Screened
impl Send for Screened
impl Sync for Screened
impl Unpin for Screened
impl UnsafeUnpin for Screened
impl UnwindSafe for Screened
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.