pub struct RunResult {
pub success: bool,
pub error: Option<String>,
pub actions_executed: usize,
pub duration_ms: u64,
pub retries: u32,
}Expand description
Result of running a config.
Fields§
§success: boolWhether the run succeeded.
error: Option<String>Error message if failed.
actions_executed: usizeNumber of actions executed.
duration_ms: u64Total duration in milliseconds.
retries: u32Number of retry attempts made.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnsafeUnpin for RunResult
impl UnwindSafe for RunResult
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