pub struct FailedExecution {
pub execution_id: ExecutionId,
pub job_id: JobId,
pub failed_at: SystemTime,
pub failure_reason: String,
}Expand description
An execution that has failed.
Fields§
§execution_id: ExecutionIdThe execution ID.
job_id: JobIdThe job ID.
failed_at: SystemTimeThe timestamp when the execution failed.
failure_reason: StringThe error message for the failure.
Auto Trait Implementations§
impl Freeze for FailedExecution
impl RefUnwindSafe for FailedExecution
impl Send for FailedExecution
impl Sync for FailedExecution
impl Unpin for FailedExecution
impl UnwindSafe for FailedExecution
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