Struct atomic_bomb_engine::models::result::TestResult
source · pub struct TestResult {Show 15 fields
pub total_duration: f64,
pub success_rate: f64,
pub median_response_time: u64,
pub response_time_95: u64,
pub response_time_99: u64,
pub total_requests: i32,
pub rps: f64,
pub max_response_time: u64,
pub min_response_time: u64,
pub err_count: i32,
pub total_data_kb: f64,
pub throughput_per_second_kb: f64,
pub http_errors: HashMap<(u16, String, String), u32>,
pub timestamp: u128,
pub assert_errors: HashMap<(String, String), u32>,
}Fields§
§total_duration: f64§success_rate: f64§median_response_time: u64§response_time_95: u64§response_time_99: u64§total_requests: i32§rps: f64§max_response_time: u64§min_response_time: u64§err_count: i32§total_data_kb: f64§throughput_per_second_kb: f64§http_errors: HashMap<(u16, String, String), u32>§timestamp: u128§assert_errors: HashMap<(String, String), u32>Auto Trait Implementations§
impl RefUnwindSafe for TestResult
impl Send for TestResult
impl Sync for TestResult
impl Unpin for TestResult
impl UnwindSafe for TestResult
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