pub enum TriageAction {
Take,
Snooze,
Dismiss,
Skip,
Quit,
}Expand description
What to do with one issue during inbox triage.
Open is deliberately not here. Looking at an issue is not a decision
about it, and the loop resolves it into one before acting - so the code
that acts has no “what do I do about open?” case to get wrong.
Variants§
Take
Turn it into a task and start work.
Snooze
Put it down until a moment passes.
Dismiss
It is not mine; hide it for good.
Skip
Leave it exactly as it is and move on.
Quit
Stop here; everything not yet decided is left untouched.
Trait Implementations§
Source§impl Clone for TriageAction
impl Clone for TriageAction
impl Copy for TriageAction
Source§impl Debug for TriageAction
impl Debug for TriageAction
impl Eq for TriageAction
Source§impl PartialEq for TriageAction
impl PartialEq for TriageAction
impl StructuralPartialEq for TriageAction
Auto Trait Implementations§
impl Freeze for TriageAction
impl RefUnwindSafe for TriageAction
impl Send for TriageAction
impl Sync for TriageAction
impl Unpin for TriageAction
impl UnsafeUnpin for TriageAction
impl UnwindSafe for TriageAction
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> 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.