pub trait IntoBenchmarks {
// Required method
fn into_benchmarks(self) -> Vec<Benchmark>;
}Expand description
Converts the implementing type into a vector of Benchmark.
Required Methods§
fn into_benchmarks(self) -> Vec<Benchmark>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".