pub struct ScenarioStepReport {
pub name: String,
pub requests: RequestSummary,
pub latency: LatencyStats,
pub status_codes: BTreeMap<String, u64>,
}Expand description
Per-step request metrics nested under one scenario.
Fields§
§name: String§requests: RequestSummary§latency: LatencyStats§status_codes: BTreeMap<String, u64>Trait Implementations§
Source§impl Debug for ScenarioStepReport
impl Debug for ScenarioStepReport
Auto Trait Implementations§
impl Freeze for ScenarioStepReport
impl RefUnwindSafe for ScenarioStepReport
impl Send for ScenarioStepReport
impl Sync for ScenarioStepReport
impl Unpin for ScenarioStepReport
impl UnsafeUnpin for ScenarioStepReport
impl UnwindSafe for ScenarioStepReport
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