Rustaceans at the border
Rustaceans at the border
Posted Apr 21, 2022 2:23 UTC (Thu) by ssokolow (guest, #94568)In reply to: Rustaceans at the border by taladar
Parent article: Rustaceans at the border
A couple of things listed in that second-last URL (The Little Book of Rust Books) that I'd like to call out as relevant:
- I generally recommend Learning Rust With Entirely Too Many Linked Lists as the next step after https://www.rust-lang.org/learn because it helps to solidify in your mind what ownership and borrowing actually mean for implementing data structures.
- Learn Rust the Dangerous Way is helpful for learning Rust from the perspective of a C programmer by translating some C into equivalent but ugly and un-idiomatic Rust code that the compiler can't help much to verify and then cleaning it up.
