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
I imagine this is something that try blocks and ? might make a bit less messy in the future.
Dec 16, 2019 ยท 9:41 PM UTC
1

