pub struct RunTotals {
pub passed: usize,
pub failed: usize,
pub skipped: usize,
pub steps: usize,
pub attempts: u64,
}Expand description
Run totals derived from the event stream — the Summarize leg of the
decorator stack (ADR-0008): leaves (GitHub summary, --output json, …)
consume the totals at RunFinished instead of re-deriving them.
Fields§
§passed: usizeScenarios that passed.
failed: usizeScenarios that failed.
skipped: usizeScenarios skipped.
steps: usizeSteps finished (all statuses).
attempts: u64Total attempts across steps (retries included).
Implementations§
Trait Implementations§
impl Copy for RunTotals
impl Eq for RunTotals
impl StructuralPartialEq for RunTotals
Auto Trait Implementations§
impl Freeze for RunTotals
impl RefUnwindSafe for RunTotals
impl Send for RunTotals
impl Sync for RunTotals
impl Unpin for RunTotals
impl UnsafeUnpin for RunTotals
impl UnwindSafe for RunTotals
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.