From b9502b82565028cee74719d70d7c92cd1ccd732b Mon Sep 17 00:00:00 2001 From: Andrew DeVries Date: Tue, 12 Aug 2025 19:49:03 -0500 Subject: [PATCH] Add content to Rust roadmap (#9014) these articles break down Options, Results, and when to panic, all important parts of writing robust rust code --- .../option-and-result-enumerations@wQHkBydWsiGEOZMdKmz40.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/data/roadmaps/rust/content/option-and-result-enumerations@wQHkBydWsiGEOZMdKmz40.md b/src/data/roadmaps/rust/content/option-and-result-enumerations@wQHkBydWsiGEOZMdKmz40.md index c3a5b8db1..b616ba355 100644 --- a/src/data/roadmaps/rust/content/option-and-result-enumerations@wQHkBydWsiGEOZMdKmz40.md +++ b/src/data/roadmaps/rust/content/option-and-result-enumerations@wQHkBydWsiGEOZMdKmz40.md @@ -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/)