Struct atomic_bomb_engine::models::result::BatchResult
source · pub struct BatchResult {Show 17 fields
pub total_duration: f64,
pub success_rate: f64,
pub error_rate: f64,
pub median_response_time: u64,
pub response_time_95: u64,
pub response_time_99: u64,
pub total_requests: u64,
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>,
pub api_results: Vec<ApiResult>,
}Fields§
§total_duration: f64§success_rate: f64§error_rate: f64§median_response_time: u64§response_time_95: u64§response_time_99: u64§total_requests: u64§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>§api_results: Vec<ApiResult>Trait Implementations§
source§impl Clone for BatchResult
impl Clone for BatchResult
source§fn clone(&self) -> BatchResult
fn clone(&self) -> BatchResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for BatchResult
impl Debug for BatchResult
source§impl<'de> Deserialize<'de> for BatchResult
impl<'de> Deserialize<'de> for BatchResult
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BatchResult
impl RefUnwindSafe for BatchResult
impl Send for BatchResult
impl Sync for BatchResult
impl Unpin for BatchResult
impl UnwindSafe for BatchResult
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