I think maybe I need to put #rustlings aside for a bit and read up a bit more.

I'm hitting the point where I am perma-stumped on some of the exercises.

Like, I really don't understand map_err or why I would want it. The examples aren't making much sense yet.

Not giving up, just changing tactics :)

My latest sticking point:

github.com/rust-lang/rustlings…

in reply to Feoh

You'll want map_err if you have function A that returns a Result with one type of error, and you need to call it in function B which is required to return a Result with a different type of error. I did serious Rust programming for like 2.5 years before I recall having to use map_err. It'll be there if you ever need it, but it's not necessarily something you have to learn right away to get productive.