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