pub trait Recording { // Provided methods fn start(&mut self) { ... } fn stop(&mut self) { ... } }
The recording trait used to mark the start and end of a benchmark.
Start the benchmark.