46

This post will analyze some data covering years of early adoption of Rust at Google. At Google, they have been seeing increased Rust adoption, especially in their consumer applications and platforms. Pulling from the over 1,000 Google developers who have authored and committed Rust code as some part of their work in 2022, they willl address some rumors head-on, both confirming some issues that could be improved and sharing some enlightening discoveries we have made along the way.

top 7 comments
sorted by: hot top controversial new old
[-] flynnguy@programming.dev 8 points 1 year ago

Matches my experience with rust as well. Once I got used to some of the concepts and syntax, everything started to just fall into place.

[-] snaggen@programming.dev 2 points 1 year ago

Yes, I started off with a C mindset and had a bit of a struggle the first days until the mental model of ownership and borrowing landed, after that it is mostly learning to use new concepts like pattern matching, the ? operator aso.

[-] flynnguy@programming.dev 2 points 1 year ago

I've done some elixir so pattern matching and functional programming was pretty familiar but yeah, borrowing took me actually reading about it rather than going "I can just figure this out" before I was like "Oh, that makes sense."

And yeah, I remember the first time I encountered the ? operator in some example code I was like WTF?!??! How do I search for THAT?

[-] snaggen@programming.dev 4 points 1 year ago

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.

[-] jpfreely@programming.dev 2 points 1 year ago

Same here. It's been 1-2 months and I feel pretty comfortable.

[-] philm@programming.dev 1 points 1 year ago

That's great to hear, my experience way back when I have learned Rust was a little bit more rough (though still nice), and I think it took longer for me to get really comfortable (language server (at that time "rls") was far not as good as rust-analyzer is now).

[-] grossjonas@programming.dev 3 points 1 year ago
this post was submitted on 27 Jun 2023
46 points (97.9% liked)

Rust

5771 readers
48 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS