/// Benchmarking options set directly by the user in `#[divan::bench]` and
/// `#[divan::bench_group]`.
////// Changes to fields must be reflected in the "Options" sections of the docs
/// for `#[divan::bench]` and `#[divan::bench_group]`.
#[derive(Default)]pubstructBenchOptions{/// Whether the benchmark should be ignored.
////// This may be set within the attribute or with a separate
/// [`#[ignore]`](https://doc.rust-lang.org/reference/attributes/testing.html#the-ignore-attribute).
pubignore:Option<bool>,
}