pub struct SucceededExecution {
pub execution_id: ExecutionId,
pub succeeded_at: SystemTime,
pub output_json: String,
}Expand description
An execution that was successfully completed.
Fields§
§execution_id: ExecutionIdThe execution ID.
succeeded_at: SystemTimeThe timestamp when the execution completed.
output_json: StringThe output JSON of the execution.
Auto Trait Implementations§
impl Freeze for SucceededExecution
impl RefUnwindSafe for SucceededExecution
impl Send for SucceededExecution
impl Sync for SucceededExecution
impl Unpin for SucceededExecution
impl UnwindSafe for SucceededExecution
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