pub struct Bencher {
pub bytes: u64,
/* private fields */
}
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
Implementations§
Source§impl Bencher
impl Bencher
Sourcepub fn iter<T, F>(&mut self, inner: F)where
F: FnMut() -> T,
pub fn iter<T, F>(&mut self, inner: F)where
F: FnMut() -> T,
Callback for benchmark functions to run in their body.
pub fn ns_elapsed(&mut self) -> u64
pub fn ns_per_iter(&mut self) -> u64
pub fn bench_n<F>(&mut self, n: u64, f: F)
pub fn auto_bench<F>(&mut self, f: F) -> Summary
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bencher
impl RefUnwindSafe for Bencher
impl Send for Bencher
impl Sync for Bencher
impl Unpin for Bencher
impl UnwindSafe for Bencher
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)