pub trait LoadTestScenario { // Required method fn run( &self, metrics: Arc<RwLock<LoadTestMetrics>>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + '_>>; }
Trait for load test scenarios
Run the scenario