pub enum BriefActionPriority {
High,
Medium,
Low,
}Expand description
Decision taxonomy for brief action priority in the manager daily brief workflow; each value carries operational meaning for source-grounded routing and review.
Variants§
High
Represents high in the manager brief decision model so the app can choose the correct evidence, review, or draft path without taking live action.
Medium
Represents medium in the manager brief decision model so the app can choose the correct evidence, review, or draft path without taking live action.
Low
Represents low in the manager brief decision model so the app can choose the correct evidence, review, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for BriefActionPriority
impl Clone for BriefActionPriority
Source§fn clone(&self) -> BriefActionPriority
fn clone(&self) -> BriefActionPriority
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 BriefActionPriority
impl Debug for BriefActionPriority
Source§impl<'de> Deserialize<'de> for BriefActionPriority
impl<'de> Deserialize<'de> for BriefActionPriority
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 BriefActionPriority
impl Hash for BriefActionPriority
Source§impl Ord for BriefActionPriority
impl Ord for BriefActionPriority
Source§fn cmp(&self, other: &BriefActionPriority) -> Ordering
fn cmp(&self, other: &BriefActionPriority) -> 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 BriefActionPriority
impl PartialEq for BriefActionPriority
Source§impl PartialOrd for BriefActionPriority
impl PartialOrd for BriefActionPriority
Source§impl Serialize for BriefActionPriority
impl Serialize for BriefActionPriority
impl Copy for BriefActionPriority
impl Eq for BriefActionPriority
impl StructuralPartialEq for BriefActionPriority
Auto Trait Implementations§
impl Freeze for BriefActionPriority
impl RefUnwindSafe for BriefActionPriority
impl Send for BriefActionPriority
impl Sync for BriefActionPriority
impl Unpin for BriefActionPriority
impl UnsafeUnpin for BriefActionPriority
impl UnwindSafe for BriefActionPriority
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