pub enum FeedbackOutcome {
Completed,
Deferred,
SuppressedByManager,
SourceFactWasWrong,
}Expand description
Decision taxonomy for feedback outcome in the manager daily brief workflow; each value carries operational meaning for source-grounded routing and review.
Variants§
Completed
Records a completed result so follow-up impact is auditable.
Deferred
Records a deferred result so follow-up impact is auditable.
SuppressedByManager
Records a suppressed by manager result so follow-up impact is auditable.
SourceFactWasWrong
Records a source fact was wrong result so follow-up impact is auditable.
Trait Implementations§
Source§impl Clone for FeedbackOutcome
impl Clone for FeedbackOutcome
Source§fn clone(&self) -> FeedbackOutcome
fn clone(&self) -> FeedbackOutcome
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 FeedbackOutcome
impl Debug for FeedbackOutcome
Source§impl<'de> Deserialize<'de> for FeedbackOutcome
impl<'de> Deserialize<'de> for FeedbackOutcome
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 FeedbackOutcome
impl Hash for FeedbackOutcome
Source§impl Ord for FeedbackOutcome
impl Ord for FeedbackOutcome
Source§fn cmp(&self, other: &FeedbackOutcome) -> Ordering
fn cmp(&self, other: &FeedbackOutcome) -> 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 FeedbackOutcome
impl PartialEq for FeedbackOutcome
Source§impl PartialOrd for FeedbackOutcome
impl PartialOrd for FeedbackOutcome
Source§impl Serialize for FeedbackOutcome
impl Serialize for FeedbackOutcome
impl Copy for FeedbackOutcome
impl Eq for FeedbackOutcome
impl StructuralPartialEq for FeedbackOutcome
Auto Trait Implementations§
impl Freeze for FeedbackOutcome
impl RefUnwindSafe for FeedbackOutcome
impl Send for FeedbackOutcome
impl Sync for FeedbackOutcome
impl Unpin for FeedbackOutcome
impl UnsafeUnpin for FeedbackOutcome
impl UnwindSafe for FeedbackOutcome
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