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

Trait Implementations

impl Debug for BenchRequest
[src]

Formats the value using the given formatter.

impl Clone for BenchRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for BenchRequest
[src]