pub struct ReplayReport {
pub dry_run: bool,
pub matched_count: usize,
pub eligible_count: usize,
pub replayed_count: usize,
pub skipped_max_replay_attempts: usize,
pub skipped_enqueue_failures: usize,
pub candidates: Vec<ReplayCandidate>,
}Fields§
§dry_run: bool§matched_count: usize§eligible_count: usize§replayed_count: usize§skipped_max_replay_attempts: usize§skipped_enqueue_failures: usize§candidates: Vec<ReplayCandidate>Trait Implementations§
Source§impl Clone for ReplayReport
impl Clone for ReplayReport
Source§fn clone(&self) -> ReplayReport
fn clone(&self) -> ReplayReport
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 ReplayReport
impl Debug for ReplayReport
Auto Trait Implementations§
impl Freeze for ReplayReport
impl RefUnwindSafe for ReplayReport
impl Send for ReplayReport
impl Sync for ReplayReport
impl Unpin for ReplayReport
impl UnsafeUnpin for ReplayReport
impl UnwindSafe for ReplayReport
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