pub trait IteratorExt {
// Required method
fn fuze(self) -> Fuze<Self> ⓘ
where Self: Sized;
}Expand description
An extension trait that adds the fuze method to iterators
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".