Struct s3lsio::BenchSummary
[−]
[src]
pub struct BenchSummary {
pub start_time: String,
pub end_time: String,
pub total_requests: u64,
pub total_success: u64,
pub total_errors: u64,
pub total_duration: f64,
pub total_payload: u64,
pub total_host_instances: u64,
pub total_threads: u64,
pub total_throughput: f64,
pub operations: Option<Vec<BenchHostInstanceSummary>>,
}A summary of all of the hosts used in the benchmarking process.
start and and end time DO NOT reflect a true duration. The total_duration does that.
Fields
start_time: String
end_time: String
total_requests: u64
total_success: u64
total_errors: u64
total_duration: f64
total_payload: u64
total_host_instances: u64
total_threads: u64
total_throughput: f64
operations: Option<Vec<BenchHostInstanceSummary>>
Methods
impl BenchSummary[src]
fn new(operations: Vec<BenchHostInstanceSummary>) -> BenchSummary
Trait Implementations
impl Debug for BenchSummary[src]
impl Clone for BenchSummary[src]
fn clone(&self) -> BenchSummary
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more