Skip to main content

IntoBenchmarks

Trait IntoBenchmarks 

Source
pub trait IntoBenchmarks {
    // Required method
    fn into_benchmarks(self) -> Vec<Benchmark>;
}
Expand description

Converts the implementing type into a vector of Benchmark.

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoBenchmarks for Vec<Benchmark>

Source§

impl<const N: usize> IntoBenchmarks for [Benchmark; N]

Implementors§