pub struct RetriedExecution {
pub failed_execution: FailedExecution,
pub retry_execution_time: SystemTime,
}Expand description
A failed execution that needs to be retried.
Fields§
§failed_execution: FailedExecutionThe failed execution.
retry_execution_time: SystemTimeThe target execution time for the retry.
Auto Trait Implementations§
impl Freeze for RetriedExecution
impl RefUnwindSafe for RetriedExecution
impl Send for RetriedExecution
impl Sync for RetriedExecution
impl Unpin for RetriedExecution
impl UnsafeUnpin for RetriedExecution
impl UnwindSafe for RetriedExecution
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