pub struct ScenarioRunResult {
pub file: String,
pub total_steps: usize,
pub passed_steps: usize,
pub failed_steps: usize,
pub first_failed_step_id: Option<String>,
pub steps: Vec<ScenarioStepResult>,
}Fields§
§file: String§total_steps: usize§passed_steps: usize§failed_steps: usize§first_failed_step_id: Option<String>§steps: Vec<ScenarioStepResult>Trait Implementations§
Source§impl Clone for ScenarioRunResult
impl Clone for ScenarioRunResult
Source§fn clone(&self) -> ScenarioRunResult
fn clone(&self) -> ScenarioRunResult
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 ScenarioRunResult
impl Debug for ScenarioRunResult
Auto Trait Implementations§
impl Freeze for ScenarioRunResult
impl RefUnwindSafe for ScenarioRunResult
impl Send for ScenarioRunResult
impl Sync for ScenarioRunResult
impl Unpin for ScenarioRunResult
impl UnsafeUnpin for ScenarioRunResult
impl UnwindSafe for ScenarioRunResult
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