1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-21 00:21:35 +02:00

Add content to Rust roadmap (#9014)

these articles break down Options, Results, and when to panic, all important parts of writing robust rust code
This commit is contained in:
Andrew DeVries
2025-08-12 19:49:03 -05:00
committed by GitHub
parent a25dced848
commit b9502b8256

View File

@@ -6,3 +6,5 @@ Visit the following resources to learn more:
- [@official@Option & unwrap](https://doc.rust-lang.org/rust-by-example/error/option_unwrap.html)
- [@official@Result](https://doc.rust-lang.org/rust-by-example/error/result.html)
- [@article@Error Handling in Rust - Andrew Gallant's Blog](https://burntsushi.net/rust-error-handling)
- [@article@Using unwrap() in Rust is Okay - Andrew Gallant's Blog](https://burntsushi.net/unwrap/)