pub trait Recording {
    // Provided methods
    fn start(&mut self) { ... }
    fn stop(&mut self) { ... }
}
Expand description

The recording trait used to mark the start and end of a benchmark.

Provided Methods§

source

fn start(&mut self)

Start the benchmark.

source

fn stop(&mut self)

Implementors§