pub struct LoopStatus {
pub task: String,
pub iteration: u8,
pub max_iterations: u8,
pub phase: LoopPhase,
pub batches: Vec<TaskBatch>,
pub issues: Vec<Issue>,
pub last_verification: Option<VerificationResult>,
pub last_commit: Option<String>,
pub git_clean: bool,
pub blocker: Option<String>,
pub timestamp: String,
}Expand description
A serializable snapshot of the autonomous loop state.
Fields§
§task: StringThe task being executed.
iteration: u8Current iteration number (1-based).
max_iterations: u8Maximum iterations allowed.
phase: LoopPhaseCurrent phase.
batches: Vec<TaskBatch>Execution batches.
issues: Vec<Issue>Issues found across all iterations.
last_verification: Option<VerificationResult>Latest verification result.
last_commit: Option<String>Most recent commit hash.
git_clean: boolWhether git working tree is clean.
blocker: Option<String>Any blocking condition.
timestamp: StringTimestamp of this status snapshot.
Implementations§
Trait Implementations§
Source§impl Clone for LoopStatus
impl Clone for LoopStatus
Source§fn clone(&self) -> LoopStatus
fn clone(&self) -> LoopStatus
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 LoopStatus
impl Debug for LoopStatus
Source§impl<'de> Deserialize<'de> for LoopStatus
impl<'de> Deserialize<'de> for LoopStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LoopStatus
impl RefUnwindSafe for LoopStatus
impl Send for LoopStatus
impl Sync for LoopStatus
impl Unpin for LoopStatus
impl UnsafeUnpin for LoopStatus
impl UnwindSafe for LoopStatus
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> 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