Rust book
基本はこれ。
Rust book(日本語版)
日本語版。
Welcome - 100 Exercises To Learn Rust
入門Rust100本ノック。
The Cargo Book
RustのパッケージマネージャーであるCargoのドキュメント。
Rust error codes index - Error codes index
Book listing all Rust error codes
Rustのエラーコード一覧。
Rust Playground
A browser interface to the Rust compiler to experiment with the language
RustのPlayground
Practical guide to Error Handling in Rust
Effective error handling ensures that a program can gracefully handle unexpected situations and errors, making the software more robust and reliable. Well-designed error messages help users understand what went wrong and how to correct it, and contribute to the overall user experience using the library or the API.
In this article I’ll gradually go through a number of options of handling errors in Rust and try to explain the benefits of using a method vs the other.
初心者向けのRustのエラーハンドリングの記事。
Asynchronous Programming in Rust
Common Mistakes with Rust Async
At Qovery, we start to have our fair share of Async Rust and to say the least it is not without caveats. Let’s be honest, Async Rust is hard. It has many more rough edges than Sync Rust and requires a different mindset, but it solves a problem space well, that is hard to tackle otherwise. It allows safer network concurrency than C++ Boost.Asio and I would start this post by giving a big thanks to the Tokio team & ecosystem for the amazing work they provide to the community.
Owned values and Futures in Rust
Panic を恐れるべからず - 何とは言わない天然水飲みたさ
Rust では様々な方法で panic することができるが、何をどのように使うべきだろうか。あるいはプログラムはエラーをどのように扱うべきだろうか。
Rustのライフタイムについてのよくある誤解
Educational blog posts for Rust beginners. Contribute to pretzelhammer/rust-blog development by creating an account on GitHub.