pub enum Escalation {
None,
DraftPublicResponse,
ManagerReviewRequired,
SafetyOrLegalReviewRequired,
}Expand description
Review-response gate that decides whether automation may draft or must escalate.
Variants§
None
No additional workflow gate is required.
DraftPublicResponse
A public response may be drafted, but staff must verify service evidence before approval.
ManagerReviewRequired
Manager must review the signal before customer-facing or operational follow-up proceeds.
SafetyOrLegalReviewRequired
Safety/legal-sensitive signal blocks public response until authorized review approves wording.
Trait Implementations§
Source§impl Clone for Escalation
impl Clone for Escalation
Source§fn clone(&self) -> Escalation
fn clone(&self) -> Escalation
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 Escalation
impl Debug for Escalation
Source§impl<'de> Deserialize<'de> for Escalation
impl<'de> Deserialize<'de> for Escalation
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 Escalation
impl PartialEq for Escalation
Source§impl Serialize for Escalation
impl Serialize for Escalation
impl Eq for Escalation
impl StructuralPartialEq for Escalation
Auto Trait Implementations§
impl Freeze for Escalation
impl RefUnwindSafe for Escalation
impl Send for Escalation
impl Sync for Escalation
impl Unpin for Escalation
impl UnsafeUnpin for Escalation
impl UnwindSafe for Escalation
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