pub struct RetryEntry {
pub issue_id: String,
pub identifier: String,
pub attempt: u32,
pub due_at_ms: u64,
pub error: Option<String>,
}Expand description
Scheduled retry state for an issue (Spec Section 4.1.7).
Fields§
§issue_id: String§identifier: StringBest-effort human ID for status surfaces/logs.
attempt: u321-based for retry queue.
due_at_ms: u64Monotonic clock timestamp in ms.
error: Option<String>Trait Implementations§
Source§impl Clone for RetryEntry
impl Clone for RetryEntry
Source§fn clone(&self) -> RetryEntry
fn clone(&self) -> RetryEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RetryEntry
impl Debug for RetryEntry
Source§impl<'de> Deserialize<'de> for RetryEntry
impl<'de> Deserialize<'de> for RetryEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RetryEntry
impl RefUnwindSafe for RetryEntry
impl Send for RetryEntry
impl Sync for RetryEntry
impl Unpin for RetryEntry
impl UnsafeUnpin for RetryEntry
impl UnwindSafe for RetryEntry
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