trait TimesReduce<R> {
// Required method
fn times_reduce(self, name: &str) -> Self;
}Required Methods§
Sourcefn times_reduce(self, name: &str) -> Self
fn times_reduce(self, name: &str) -> Self
This is essentially a specialized impl of consolidate, with a HashMap instead of the Trace.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.