41
Rust fact vs. fiction: 5 Insights from Google's Rust journey in 2022
(opensource.googleblog.com)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
Having programmed in C, I got the ownership model quite fast. I just think of it as "is this function going to do an implicit free on return", if not then it should just borrow it. And for C, you already had to think of ownership, just that it was not enforced in any way in the language... if you messed up the ownership to either got a crash or leak.