pub trait MapResultwhere
Self: ListFn,
Self::End: ResultFn,{
// Provided method
fn map_result<E: MapResultFn<Input = <Self::End as ResultFn>::Result>>(
self,
map: E
) -> MapResultList<Self, E> { ... }
}
pub trait MapResultwhere
Self: ListFn,
Self::End: ResultFn,{
// Provided method
fn map_result<E: MapResultFn<Input = <Self::End as ResultFn>::Result>>(
self,
map: E
) -> MapResultList<Self, E> { ... }
}