pub fn map_error<T, E1, E2, F>(
src: Source<Result<T, E1>>,
f: F,
) -> Source<Result<T, E2>>Expand description
Map the error variant via f. Both Ok and Err continue
downstream; only the Err payload type changes.
Akka.NET: Source.SelectError.