pub struct E2EStep {
pub name: String,
pub started_at: Instant,
pub duration: Duration,
pub result: E2EStepResult,
pub capture: Option<E2ECapture>,
}Expand description
A single step in an E2E test scenario.
Fields§
§name: StringStep name/description.
started_at: InstantWhen the step started.
duration: DurationStep duration.
result: E2EStepResultStep result.
capture: Option<E2ECapture>Captured request/response (if applicable).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for E2EStep
impl RefUnwindSafe for E2EStep
impl Send for E2EStep
impl Sync for E2EStep
impl Unpin for E2EStep
impl UnwindSafe for E2EStep
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).