strest 0.1.10

Blazing-fast async HTTP load tester in Rust - lock-free design, real-time stats, distributed runs, and optional chart exports for high-load API testing.
Documentation
mod section_runtime_network;
mod section_runtime_output;

use clap::ArgMatches;

use crate::args::TesterArgs;
use crate::error::AppResult;

use super::super::types::ConfigFile;

pub(super) fn apply_runtime_config(
    args: &mut TesterArgs,
    matches: &ArgMatches,
    config: &ConfigFile,
) -> AppResult<()> {
    section_runtime_output::apply_runtime_output_config(args, matches, config)?;
    section_runtime_network::apply_runtime_network_config(args, matches, config)?;
    Ok(())
}