pub struct ReplaySummary {
pub total: usize,
pub executed: usize,
pub skipped: usize,
pub failed: usize,
pub aborted: bool,
}Expand description
Summary of a replay execution.
Fields§
§total: usizeTotal number of commands in the session
executed: usizeNumber of commands successfully executed
skipped: usizeNumber of commands skipped
failed: usizeNumber of commands that failed
aborted: boolWhether the replay was aborted (Ctrl+C or user choice)
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ReplaySummary
impl RefUnwindSafe for ReplaySummary
impl Send for ReplaySummary
impl Sync for ReplaySummary
impl Unpin 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