pub struct RetryInfo {
pub retry_count: usize,
pub error_message: String,
pub error_class: String,
pub error_backtrace: Vec<String>,
pub failed_at: DateTime<UTC>,
pub retried_at: Option<DateTime<UTC>>,
}Fields§
§retry_count: usize§error_message: String§error_class: String§error_backtrace: Vec<String>§failed_at: DateTime<UTC>§retried_at: Option<DateTime<UTC>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RetryInfo
impl RefUnwindSafe for RetryInfo
impl Send for RetryInfo
impl Sync for RetryInfo
impl Unpin for RetryInfo
impl UnwindSafe for RetryInfo
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