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>Trait Implementations§
source§impl Clone for TestResult
impl Clone for TestResult
source§fn clone(&self) -> TestResult
fn clone(&self) -> TestResult
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 TestResult
impl Debug for TestResult
source§impl<'de> Deserialize<'de> for TestResult
impl<'de> Deserialize<'de> for TestResult
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 TestResult
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