Struct s3lsio::BenchRequest
[−]
[src]
pub struct BenchRequest {
pub date_time: String,
pub description: String,
pub report: String,
pub iterations: u64,
pub duration: u64,
pub virtual_users: u32,
pub request_type: String,
pub size: u64,
pub nodes: u32,
}Metadata for the Benchmarking request.
iterations - how many iterations to perform. This should be 0 if duration is not 0
duration - how many seconds to perform operations. This should be 0 if iterations is not 0
virtual_users - how many simulated users (threads to perform)
nodes - how many hosts/VMs to run these operations on
Fields
date_time: String
description: String
report: String
iterations: u64
duration: u64
virtual_users: u32
request_type: String
size: u64
nodes: u32
Trait Implementations
impl Debug for BenchRequest[src]
impl Clone for BenchRequest[src]
fn clone(&self) -> BenchRequest
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