pub struct ScenarioStats {
pub name: String,
pub requests: RequestStats,
pub steps: Vec<ScenarioStepStats>,
}Expand description
Per-scenario request metrics and nested step breakdowns.
Fields§
§name: String§requests: RequestStats§steps: Vec<ScenarioStepStats>Auto Trait Implementations§
impl Freeze for ScenarioStats
impl RefUnwindSafe for ScenarioStats
impl Send for ScenarioStats
impl Sync for ScenarioStats
impl Unpin for ScenarioStats
impl UnsafeUnpin for ScenarioStats
impl UnwindSafe for ScenarioStats
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