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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".