pub enum ManagerDailyBriefOutcomeCode {
Completed,
Deferred,
SuppressedByManager,
SourceFactWasWrong,
}Expand description
Persisted outcome states for manager daily-brief actions.
Variants§
Completed
Workflow completed and can contribute final labor evidence.
Deferred
Workflow was postponed and should not be counted as completed savings.
SuppressedByManager
Manager intentionally hid or skipped the suggested workflow action.
SourceFactWasWrong
Provider evidence was incorrect, so the action is excluded or corrected.
Trait Implementations§
Source§impl Clone for ManagerDailyBriefOutcomeCode
impl Clone for ManagerDailyBriefOutcomeCode
Source§fn clone(&self) -> ManagerDailyBriefOutcomeCode
fn clone(&self) -> ManagerDailyBriefOutcomeCode
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 ManagerDailyBriefOutcomeCode
impl Debug for ManagerDailyBriefOutcomeCode
Source§impl<'de> Deserialize<'de> for ManagerDailyBriefOutcomeCode
impl<'de> Deserialize<'de> for ManagerDailyBriefOutcomeCode
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 ManagerDailyBriefOutcomeCode
impl PartialEq for ManagerDailyBriefOutcomeCode
Source§fn eq(&self, other: &ManagerDailyBriefOutcomeCode) -> bool
fn eq(&self, other: &ManagerDailyBriefOutcomeCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ManagerDailyBriefOutcomeCode
impl Eq for ManagerDailyBriefOutcomeCode
impl StructuralPartialEq for ManagerDailyBriefOutcomeCode
Auto Trait Implementations§
impl Freeze for ManagerDailyBriefOutcomeCode
impl RefUnwindSafe for ManagerDailyBriefOutcomeCode
impl Send for ManagerDailyBriefOutcomeCode
impl Sync for ManagerDailyBriefOutcomeCode
impl Unpin for ManagerDailyBriefOutcomeCode
impl UnsafeUnpin for ManagerDailyBriefOutcomeCode
impl UnwindSafe for ManagerDailyBriefOutcomeCode
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