pub trait Register<T>: 'static { // Required methods fn get_name(&self) -> String; fn call_mut(&mut self, bencher: Bencher<'_>, arg: T); }
type that can be registered as a benchmark function.