pub type MapInto<I, R> = MapSpecialCase<I, MapSpecialCaseFnInto<R>>;Expand description
An iterator adapter to apply Into conversion to each element.
See .map_into() for more information.
Aliased Type§
pub struct MapInto<I, R> {
    pub(crate) iter: I,
    pub(crate) f: MapSpecialCaseFnInto<R>,
}Fields§
§iter: I§f: MapSpecialCaseFnInto<R>