pub trait Map: ListFn {
// Provided method
fn map<M: MapFn<Input = Self::Item>>(
self,
m: M,
) -> FlatMapList<Self, MapWrap<M>> { ... }
}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.