pub struct ScenarioStep {
pub name: String,
pub trace: TransactionTrace,
}Expand description
Named transaction trace captured by a scenario test.
Fields§
§name: StringHuman-readable step name.
trace: TransactionTraceStructural transaction trace for this step.
Trait Implementations§
Source§impl Clone for ScenarioStep
impl Clone for ScenarioStep
Source§fn clone(&self) -> ScenarioStep
fn clone(&self) -> ScenarioStep
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 moreSource§impl Debug for ScenarioStep
impl Debug for ScenarioStep
impl Eq for ScenarioStep
Source§impl PartialEq for ScenarioStep
impl PartialEq for ScenarioStep
Source§fn eq(&self, other: &ScenarioStep) -> bool
fn eq(&self, other: &ScenarioStep) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScenarioStep
Auto Trait Implementations§
impl Freeze for ScenarioStep
impl RefUnwindSafe for ScenarioStep
impl Send for ScenarioStep
impl Sync for ScenarioStep
impl Unpin for ScenarioStep
impl UnsafeUnpin for ScenarioStep
impl UnwindSafe for ScenarioStep
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