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