Could `std::Result<T, E1>` implement `From<Result<T, E2>>` where `E2: Into<E1>`? It would mean being able to write `r.into()` rather than `r.map_err(Into::into)`.
2
9
return Ok(r?); perhaps?
Dec 16, 2019 ยท 9:45 PM UTC
1
1

