DIR6 notes inside
The Rust Language
Notes on memory safety, the borrow checker, and fighting the compiler.
My collection of syntax patterns, struggle logs, and idiomatic solutions.
dir errors/ Rust Errors Errors I encounter and how to fix them. note iter.md Rust Iter iter note chaining-methods.md Chaining methods Rusts functional style note borrow-checker.md Fighting the Borrow Checker Common patterns where the borrow checker yells at me, and how to satisfy it. note lifetimes.md Rust lifetimes Errors I encounter learning lifetimes and how to resolve them. note from-str.md FromStr Trait How to parse strings into custom Structs idiomatically using the FromStr trait.