Struct s3lsio::BenchThreadSummary
[−]
[src]
pub struct BenchThreadSummary {
pub thread_name: String,
pub total_requests: u64,
pub total_success: u64,
pub total_errors: u64,
pub total_duration: f64,
pub total_payload: u64,
pub total_throughput: f64,
pub operations: Vec<BenchOperation>,
}A summary of all of the operations for a given thread
start and and end time DO NOT reflect a true duration. The total_duration does that.
Fields
thread_name: String
total_requests: u64
total_success: u64
total_errors: u64
total_duration: f64
total_payload: u64
total_throughput: f64
operations: Vec<BenchOperation>
Methods
impl BenchThreadSummary[src]
fn new(thread: BenchThread,
operations: Vec<BenchOperation>)
-> BenchThreadSummary
operations: Vec<BenchOperation>)
-> BenchThreadSummary
Trait Implementations
impl Debug for BenchThreadSummary[src]
impl Clone for BenchThreadSummary[src]
fn clone(&self) -> BenchThreadSummary
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