pub struct RunProgress {
pub results: Vec<TaskResult>,
pub success: bool,
}Expand description
Progress tracking for a multi-phase feature development run.
Aggregates the results of all completed phases and indicates whether the entire run was successful.
Fields§
§results: Vec<TaskResult>Completed phase results.
success: boolWhether the entire run succeeded.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunProgress
impl RefUnwindSafe for RunProgress
impl Send for RunProgress
impl Sync for RunProgress
impl Unpin for RunProgress
impl UnsafeUnpin for RunProgress
impl UnwindSafe for RunProgress
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