pub enum LoopAbort {
Intel(String),
Mcp(String),
}Expand description
A fatal infrastructure failure that aborts the run (mapped to exit 4 / 6 by the caller, RFC 0011). Tool-domain errors are not aborts — they are fed back to the model as observations.
Variants§
Intel(String)
The intelligence endpoint is unreachable / erroring (exit 4).
Mcp(String)
A required MCP server failed (exit 6).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoopAbort
impl RefUnwindSafe for LoopAbort
impl Send for LoopAbort
impl Sync for LoopAbort
impl Unpin for LoopAbort
impl UnsafeUnpin for LoopAbort
impl UnwindSafe for LoopAbort
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