pub enum Action {
Advance,
AutoResume,
GateInfra,
GateReview,
}Expand description
The action to take in response to an agent outcome at a given stage.
Variants§
Advance
Advance to the next stage.
AutoResume
Automatically resume/retry (e.g. rate limit — wait and retry).
GateInfra
Gate for a human due to an infrastructure-class fault (OOM, agent binary unavailable) — not the agent’s fault.
GateReview
Gate for a human due to a review-worthy outcome (agent-reported failure, or an indeterminate/unknown result that must never silently advance).
Trait Implementations§
impl Copy for Action
impl Eq for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
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