pub trait IteratorEx: Iterator + Sized{
// Provided method
fn build_tree(self) -> Option<Self::Item> { ... }
}
Expand description
The trait extends the functionality of the standard Iterator
trait by adding
the build_tree
method.
Provided Methods§
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.