pub trait IteratorReducerExt<T>: Iterator + Sealed<T>{
// Required method
fn collect_trees(self) -> Vec<Tree<T>>;
}Expand description
A sealed trait to add convenient methods to iterators of reducers.
Required Methods§
fn collect_trees(self) -> Vec<Tree<T>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".