pub struct Bencher {
pub bytes: u64,
/* private fields */
}
🔬 This is a nightly-only experimental API. (
test
)Expand description
Manager of the benchmarking runs.
This is fed into functions marked with #[bench]
to allow for
set-up & tear-down before running a piece of code repeatedly via a
call to iter
.
Fields
bytes: u64
🔬 This is a nightly-only experimental API. (
test
)Implementations
🔬 This is a nightly-only experimental API. (test
)
🔬 This is a nightly-only experimental API. (
test
)Callback for benchmark functions to run in their body.
🔬 This is a nightly-only experimental API. (
test
)Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Bencher
impl UnwindSafe for Bencher
Blanket Implementations
Mutably borrows from an owned value. Read more