Rust API guidelines https://github.com/brson/rust-api-guidelines/blob/master/README.md contains an absolute wealth of Rust wisdom and best practices.
miniblog.
Related Posts
Today I learnt that Rust has an API guidelines book, with a ton of helpful advice on idiomatic style. For example, naming: https://rust-lang.github.io/api-guidelines/naming.html
Readers expect `to_foo()` to do more work than `as_foo()`, which was new to me.
GitHub's Open Source Guidelines are chock full of good advice:
Having code style guidelines is a good thing, but after getting to know a team it's usually possible to work out who wrote what.
