Struct s3lsio::BenchOutput
[−]
[src]
pub struct BenchOutput {
pub format: OutputFormat,
pub color: Color,
}Allows you to control Benchmarking output.
Fields
format: OutputFormat
Defaults to OutputFormat::plain.
Available formats are json, plain, serialize or none (don't output anything). If plain is used then you can serialize structures with format! and then pass the output.
color: Color
Can be any term color. Defaults to term::color::GREEN.
Trait Implementations
impl Debug for BenchOutput[src]
impl Clone for BenchOutput[src]
fn clone(&self) -> BenchOutput
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
impl Copy for BenchOutput[src]
impl PartialEq for BenchOutput[src]
fn eq(&self, __arg_0: &BenchOutput) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &BenchOutput) -> bool
This method tests for !=.