Learning Rust: Custom Error types that actually work!
#rust
#axum
#anyhow
#errors
#types
#newtype
#development
We are taking advantage of a *very* powerful crate here, [anyhow](https://crates.io/crates/anyhow). Which allows us to work with errors in Rust way more efficiently. In our case we are using it's popularity and other crates ability to convert into this Error type.
read more →