pub struct ReplaySummary {
pub attempts: usize,
pub compiled_pass: usize,
pub rejected: usize,
pub compiled_fail: usize,
pub patch_refused: usize,
pub errored: usize,
}Expand description
Counts from a replay run.
Fields§
§attempts: usizeAttempts replayed.
compiled_pass: usizeAttempts whose patched file compiled clean and passed every guard.
rejected: usizeAttempts that compiled clean but were refused by an accept guard.
compiled_fail: usizeAttempts whose patched file compiled with errors.
patch_refused: usizeAttempts whose patch was refused.
errored: usizeAttempts that timed out or hit a runner error.
Trait Implementations§
Source§impl Clone for ReplaySummary
impl Clone for ReplaySummary
Source§fn clone(&self) -> ReplaySummary
fn clone(&self) -> ReplaySummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ReplaySummary
Source§impl Debug for ReplaySummary
impl Debug for ReplaySummary
Source§impl Default for ReplaySummary
impl Default for ReplaySummary
Source§fn default() -> ReplaySummary
fn default() -> ReplaySummary
Returns the “default value” for a type. Read more
impl Eq for ReplaySummary
Source§impl PartialEq for ReplaySummary
impl PartialEq for ReplaySummary
Source§fn eq(&self, other: &ReplaySummary) -> bool
fn eq(&self, other: &ReplaySummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReplaySummary
Auto Trait Implementations§
impl Freeze for ReplaySummary
impl RefUnwindSafe for ReplaySummary
impl Send for ReplaySummary
impl Sync for ReplaySummary
impl Unpin for ReplaySummary
impl UnsafeUnpin for ReplaySummary
impl UnwindSafe for ReplaySummary
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