pub enum ManagerBriefPersona {
GeneralManager,
AssistantGeneralManager,
FrontDeskLead,
FrontDeskAgent,
}Expand description
Decision choices for manager brief persona in the manager daily brief workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
GeneralManager
Selects general manager for the manager brief decision model so the app can choose a review, evidence, or draft path without taking live action.
AssistantGeneralManager
Selects assistant general manager for the manager brief decision model so the app can choose a review, evidence, or draft path without taking live action.
FrontDeskLead
Selects front desk lead for the manager brief decision model so the app can choose a review, evidence, or draft path without taking live action.
FrontDeskAgent
Selects front desk agent for the manager brief decision model so the app can choose a review, evidence, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for ManagerBriefPersona
impl Clone for ManagerBriefPersona
Source§fn clone(&self) -> ManagerBriefPersona
fn clone(&self) -> ManagerBriefPersona
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 ManagerBriefPersona
impl Debug for ManagerBriefPersona
Source§impl<'de> Deserialize<'de> for ManagerBriefPersona
impl<'de> Deserialize<'de> for ManagerBriefPersona
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 ManagerBriefPersona
impl Hash for ManagerBriefPersona
Source§impl Ord for ManagerBriefPersona
impl Ord for ManagerBriefPersona
Source§fn cmp(&self, other: &ManagerBriefPersona) -> Ordering
fn cmp(&self, other: &ManagerBriefPersona) -> 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 ManagerBriefPersona
impl PartialEq for ManagerBriefPersona
Source§impl PartialOrd for ManagerBriefPersona
impl PartialOrd for ManagerBriefPersona
Source§impl Serialize for ManagerBriefPersona
impl Serialize for ManagerBriefPersona
impl Copy for ManagerBriefPersona
impl Eq for ManagerBriefPersona
impl StructuralPartialEq for ManagerBriefPersona
Auto Trait Implementations§
impl Freeze for ManagerBriefPersona
impl RefUnwindSafe for ManagerBriefPersona
impl Send for ManagerBriefPersona
impl Sync for ManagerBriefPersona
impl Unpin for ManagerBriefPersona
impl UnsafeUnpin for ManagerBriefPersona
impl UnwindSafe for ManagerBriefPersona
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