pub trait IterExtensions: Iterator + Sized {
// Provided method
fn map_skippable<R, F>(self, f: F) -> SkippableMap<Self, F> ⓘ
where F: Fn(Self::Item) -> R { ... }
}
Provided Methods§
fn map_skippable<R, F>(self, f: F) -> SkippableMap<Self, F> ⓘ
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.