Go vs Rust learning

zinderic@programming.dev to Programmer Humor@programming.dev – 242 points –
27

You are viewing a single comment

I don't like the rust way either. But at least you can unwrap

With some sprinkle of libraries such as anyhow and thiserror the Rust errors become actually pleasant to use. The vanilla way is indeed painful when you start handling more than one type of error at a time.

Exactly this. Anyhow makes error handling in rust actually a joy. It's only something you need to consider if you're writing a library for others to use, and in that case, it's good that rust forces you to be very very explicit