pub struct E2EReport {
pub scenario_name: String,
pub description: Option<String>,
pub passed: usize,
pub failed: usize,
pub skipped: usize,
pub total_duration: Duration,
pub steps: Vec<E2EStep>,
pub logs: Vec<String>,
}Expand description
E2E test report with multiple output formats.
Fields§
§scenario_name: StringScenario name.
description: Option<String>Scenario description.
passed: usizeNumber of passed steps.
failed: usizeNumber of failed steps.
skipped: usizeNumber of skipped steps.
total_duration: DurationTotal duration.
steps: Vec<E2EStep>Step details.
logs: Vec<String>Log messages.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for E2EReport
impl RefUnwindSafe for E2EReport
impl Send for E2EReport
impl Sync for E2EReport
impl Unpin for E2EReport
impl UnwindSafe for E2EReport
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).