pub struct DevAttemptResult {
pub had_error: bool,
pub output_valid: bool,
pub status: DevelopmentStatus,
pub summary: String,
pub files_changed: Option<Vec<String>>,
pub next_steps: Option<String>,
}Expand description
Result of a single development attempt (one session), including XSD retries.
Fields§
§had_error: boolWhether any agent run returned a non-zero exit code.
output_valid: boolWhether the output was successfully validated against the XSD.
status: DevelopmentStatusDevelopment status (completed/partial/failed).
summary: StringSummary of what was done in this attempt.
files_changed: Option<Vec<String>>Optional list of files changed in this attempt.
next_steps: Option<String>Optional next steps recommended by the agent.
Trait Implementations§
Source§impl Clone for DevAttemptResult
impl Clone for DevAttemptResult
Source§fn clone(&self) -> DevAttemptResult
fn clone(&self) -> DevAttemptResult
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 moreAuto Trait Implementations§
impl Freeze for DevAttemptResult
impl RefUnwindSafe for DevAttemptResult
impl Send for DevAttemptResult
impl Sync for DevAttemptResult
impl Unpin for DevAttemptResult
impl UnwindSafe for DevAttemptResult
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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