←back to thread

203 points amazonhut | 3 comments | | HN request time: 0.502s | source
Show context
Charon77 ◴[] No.45248010[source]
Absolutely love how readable the entire project is
replies(3): >>45248035 #>>45248141 #>>45248297 #
1. yieldcrv ◴[] No.45248035[source]
Never knew Rust could be that readable. Makes me think other Rust engineers are stuck in a masochistic ego driven contest, which would explain everything else I've encountered about the Rust community and recruiting on that side.
replies(2): >>45248099 #>>45248436 #
2. jmaker ◴[] No.45248099[source]
Not sure what you’re alluding to but that’s just ordinary Rust without performance or async IO concerns.
3. GardenLetter27 ◴[] No.45248436[source]
Most Rust code looks like this - only generic library code goes crazy with all the generics and lifetimes, due to the need to avoid unnecessary mallocs and also provide a flexible API to users.

But most people aren't writing libraries.