January 2022
Beginner
424 pages
8h 8m
English
The typical programming errors concerning references, which Rust helps to avoid: use after move, use after drop, and use after change by an alias
The concept of borrowing of Rust references
The concept of lifetime of Rust objects and references
How Rust helps to avoid use after drop errors
How Rust, with its borrow checker, helps to avoid use after change by an alias errors
Why functions returning references need lifetime specifiers
How to use lifetime specifiers for functions, and what they mean
Why ...