Rust-Syntax-List
Rust Syntax List
-
2017-Undefined vs Unsafe in Rust: It’s a very useful but subtle distinction and I feel we’d be able to talk about safety more expressively if this was well known.
-
2017-What’s a reference in Rust?: people who have read the lifetimes chapter in the Rust book and sorta understand it in principle but are still confused about a lot of pretty basic Rust things.
-
2017-Tokio internals: Understanding Rust’s asynchronous IO framework from the bottom up
-
2018-Async/Await I: Self-Referential Structs: This is the first in a series of blog posts about generators, async & await in Rust.
-
2018-Writing complex macros in Rust: Reverse Polish Notation
-
2018-You can’t Rust that: Handles, not self referential pointers; Reference count your way out of lifetime / borrow checker hell; Consider promoting new state instead of interior mutability.
-
Python Idioms in Rust: In fact, I found Rust to be rather Pythonic1. ✨ Sure, you have to be careful about types and ownership, but there is a strong case to be made that Rust shares many of the strengths of Python’s syntax.
异常处理
- 2019-ERROR HANDLING SURVEY: This post is a survey of the current crates.io error library landscape.