usestd::num::NonZeroU32;/// Minimal Run Statistics for a given Scenario
////// Provides a sliver of the statistics available from a given Scenario run. More stats will be
/// added over time.
////// TODO:
/// - Error Rate
/// - Measured TPS (Quantiles)
#[non_exhaustive]pubstructRunStatistics{pubconcurrency:usize,
pubgoal_tps: NonZeroU32,
pubstable:bool,
}