pub enum InternalFlagSeverity {
Info,
NeedsStaffReview,
NeedsManagerReview,
DoNotSend,
}Expand description
Decision choices for internal flag severity in the daily update workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
Info
Selects info for the daily update decision model so the app can choose a review, evidence, or draft path without taking live action.
NeedsStaffReview
Selects needs staff review for the daily update decision model so the app can choose a review, evidence, or draft path without taking live action.
NeedsManagerReview
Selects needs manager review for the daily update decision model so the app can choose a review, evidence, or draft path without taking live action.
DoNotSend
Selects do not send for the daily update decision model so the app can choose a review, evidence, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for InternalFlagSeverity
impl Clone for InternalFlagSeverity
Source§fn clone(&self) -> InternalFlagSeverity
fn clone(&self) -> InternalFlagSeverity
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 InternalFlagSeverity
impl Debug for InternalFlagSeverity
Source§impl<'de> Deserialize<'de> for InternalFlagSeverity
impl<'de> Deserialize<'de> for InternalFlagSeverity
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 InternalFlagSeverity
impl PartialEq for InternalFlagSeverity
Source§impl Serialize for InternalFlagSeverity
impl Serialize for InternalFlagSeverity
impl Copy for InternalFlagSeverity
impl Eq for InternalFlagSeverity
impl StructuralPartialEq for InternalFlagSeverity
Auto Trait Implementations§
impl Freeze for InternalFlagSeverity
impl RefUnwindSafe for InternalFlagSeverity
impl Send for InternalFlagSeverity
impl Sync for InternalFlagSeverity
impl Unpin for InternalFlagSeverity
impl UnsafeUnpin for InternalFlagSeverity
impl UnwindSafe for InternalFlagSeverity
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