pub enum GateDecision {
AutoProceed,
Escalate {
reason: String,
},
}Expand description
The gate’s verdict for one proposed action.
Variants§
AutoProceed
Safe / allowlisted / verified — let the loop carry the action out.
Escalate
Risky or ambiguous — hand it to a human with context. The loop records the escalation and recurses on the next tick.
Implementations§
Trait Implementations§
Source§impl Clone for GateDecision
impl Clone for GateDecision
Source§fn clone(&self) -> GateDecision
fn clone(&self) -> GateDecision
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GateDecision
impl Debug for GateDecision
impl Eq for GateDecision
Source§impl PartialEq for GateDecision
impl PartialEq for GateDecision
Source§fn eq(&self, other: &GateDecision) -> bool
fn eq(&self, other: &GateDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GateDecision
Auto Trait Implementations§
impl Freeze for GateDecision
impl RefUnwindSafe for GateDecision
impl Send for GateDecision
impl Sync for GateDecision
impl Unpin for GateDecision
impl UnsafeUnpin for GateDecision
impl UnwindSafe for GateDecision
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