pub enum ReviewGate {
ManagerApproval,
MedicalDocumentReview,
BehaviorReview,
CustomerMessageApproval,
RefundOrDepositException,
}Expand description
Human review gate required before automation may proceed with sensitive work.
Variants§
ManagerApproval
Manager approval outcome in the automation authority or human-review policy.
MedicalDocumentReview
Medical document review outcome in the automation authority or human-review policy.
BehaviorReview
Behavior review outcome in the automation authority or human-review policy.
CustomerMessageApproval
Customer message approval outcome in the automation authority or human-review policy.
RefundOrDepositException
Refund or deposit exception outcome in the automation authority or human-review policy.
Trait Implementations§
Source§impl Clone for ReviewGate
impl Clone for ReviewGate
Source§fn clone(&self) -> ReviewGate
fn clone(&self) -> ReviewGate
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 ReviewGate
impl Debug for ReviewGate
Source§impl<'de> Deserialize<'de> for ReviewGate
impl<'de> Deserialize<'de> for ReviewGate
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 ReviewGate
impl PartialEq for ReviewGate
Source§impl Serialize for ReviewGate
impl Serialize for ReviewGate
impl Eq for ReviewGate
impl StructuralPartialEq for ReviewGate
Auto Trait Implementations§
impl Freeze for ReviewGate
impl RefUnwindSafe for ReviewGate
impl Send for ReviewGate
impl Sync for ReviewGate
impl Unpin for ReviewGate
impl UnsafeUnpin for ReviewGate
impl UnwindSafe for ReviewGate
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