Struct dudect_bencher::ctbench::BenchOpts [] [src]

pub struct BenchOpts {
    pub continuous: bool,
    pub filter: Option<String>,
    pub file_out: Option<PathBuf>,
}

Benchmarking options.

When continuous is set, it will continuously set the first (alphabetically) of the benchmarks after they have been optionally filtered.

When filter is set and continuous is not set, only benchmarks whose names contain the filter string as a substring will be executed.

file_out is optionally the filename where CSV output of raw runtime data should be written

Fields

Trait Implementations

impl Default for BenchOpts
[src]

Returns the "default value" for a type. Read more