pub struct FixResult {
pub success: bool,
pub analysis: String,
pub fix_command: String,
pub attempts: u32,
pub final_result: Option<StepResult>,
}Expand description
Result of an auto-fix attempt.
Fields§
§success: boolWhether the fix succeeded.
analysis: StringThe analysis from the Thinking model.
fix_command: StringThe generated fix command/code.
attempts: u32Number of fix attempts made.
final_result: Option<StepResult>The final step result after fix.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FixResult
impl RefUnwindSafe for FixResult
impl Send for FixResult
impl Sync for FixResult
impl Unpin for FixResult
impl UnsafeUnpin for FixResult
impl UnwindSafe for FixResult
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