pub struct MissionRunner {
pub auto_mode: bool,
pub output_override: Option<PathBuf>,
pub repo_url: Option<String>,
pub local_path: Option<PathBuf>,
pub last_best_score: f64,
pub event_tx: Option<UnboundedSender<TuiEvent>>,
/* private fields */
}Fields§
§auto_mode: bool§output_override: Option<PathBuf>Custom output directory override
repo_url: Option<String>GitHub repo URL to clone as context
local_path: Option<PathBuf>Local directory to use as context
last_best_score: f64Best score achieved across all fix rounds (for benchmark reporting).
event_tx: Option<UnboundedSender<TuiEvent>>Optional TUI event sender for live updates.
Implementations§
Source§impl MissionRunner
impl MissionRunner
Auto Trait Implementations§
impl Freeze for MissionRunner
impl !RefUnwindSafe for MissionRunner
impl Send for MissionRunner
impl Sync for MissionRunner
impl Unpin for MissionRunner
impl UnsafeUnpin for MissionRunner
impl !UnwindSafe for MissionRunner
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more