pub struct StepOutcome {
pub step: StepRef,
pub status: Status,
pub attempts: u32,
pub duration: Duration,
pub detail: Option<String>,
}Expand description
Per-step result reported by an engine.
Fields§
§step: StepRefAnchor to the authored feature line.
status: StatusOutcome status.
attempts: u32Number of attempts made (≥ 1 once the step ran).
duration: DurationWall-clock duration of all attempts.
detail: Option<String>Engine-specific detail (assert message, timing breakdown, …).
Trait Implementations§
Source§impl Clone for StepOutcome
impl Clone for StepOutcome
Source§fn clone(&self) -> StepOutcome
fn clone(&self) -> StepOutcome
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 moreAuto Trait Implementations§
impl Freeze for StepOutcome
impl RefUnwindSafe for StepOutcome
impl Send for StepOutcome
impl Sync for StepOutcome
impl Unpin for StepOutcome
impl UnsafeUnpin for StepOutcome
impl UnwindSafe for StepOutcome
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