pub struct ReplayCandidate {
pub id: String,
pub event: String,
pub task_id: Option<String>,
pub failed_at: String,
pub attempts: u32,
pub replay_count: u32,
pub error: String,
pub eligible_for_replay: bool,
}Fields§
§id: String§event: String§task_id: Option<String>§failed_at: String§attempts: u32§replay_count: u32§error: String§eligible_for_replay: boolTrait Implementations§
Source§impl Clone for ReplayCandidate
impl Clone for ReplayCandidate
Source§fn clone(&self) -> ReplayCandidate
fn clone(&self) -> ReplayCandidate
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 ReplayCandidate
impl Debug for ReplayCandidate
Auto Trait Implementations§
impl Freeze for ReplayCandidate
impl RefUnwindSafe for ReplayCandidate
impl Send for ReplayCandidate
impl Sync for ReplayCandidate
impl Unpin for ReplayCandidate
impl UnsafeUnpin for ReplayCandidate
impl UnwindSafe for ReplayCandidate
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