pub struct LoopOptions {
pub max_iterations: usize,
pub max_hours: f64,
pub control_file: PathBuf,
pub circuit_breaker_limit: usize,
pub agent_home: String,
pub mode: LoopMode,
}Expand description
Loop configuration (mirrors solo-dev.sh flags).
Fields§
§max_iterations: usizeMax iterations (0 = unlimited)
max_hours: f64Max wall clock hours (0.0 = unlimited)
control_file: PathBufControl file path (write “stop”/“pause”/“skip”)
circuit_breaker_limit: usizeCircuit breaker: max consecutive identical failures
agent_home: StringAgent home dir for evolution.jsonl
mode: LoopModeMode: “loop” (repeat task) or “evolve” (self-improve)
Trait Implementations§
Source§impl Clone for LoopOptions
impl Clone for LoopOptions
Source§fn clone(&self) -> LoopOptions
fn clone(&self) -> LoopOptions
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 LoopOptions
impl Debug for LoopOptions
Auto Trait Implementations§
impl Freeze for LoopOptions
impl RefUnwindSafe for LoopOptions
impl Send for LoopOptions
impl Sync for LoopOptions
impl Unpin for LoopOptions
impl UnsafeUnpin for LoopOptions
impl UnwindSafe for LoopOptions
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