pub type MapOk<I, F> = MapSpecialCase<I, MapSpecialCaseFnOk<F>>;Expand description
An iterator adapter to apply a transformation within a nested Result::Ok.
See .map_ok() for more information.
Aliased Type§
pub struct MapOk<I, F> {
pub(crate) iter: I,
pub(crate) f: MapSpecialCaseFnOk<F>,
}Fields§
§iter: I§f: MapSpecialCaseFnOk<F>