Skip to content

nikomatsakis/how-to-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

how-to-rust

A collection of blog posts and links that talk about how to successfully use Rust.

This repo is meant to be a list of links pointing at great blog posts about using Rust. I am particularly interested in collecting posts that discuss how to overcome borrow checker errors that arise or how to best make use of the borrow checker to enforce interesting properties.

I have some vague ideas of turning this repo from a collection of links into a nice mdbook, but for now, I'm just accumulating data! Pull requests adding interesting articles (or adjusting the categorizations) are very welcome!

Borrow checker challenges

Lays out various limitations of Rust’s ownership and borrowing system as well as – where applicable – current workarounds.

Structuring code

Discusses techniques for making a "lazilly allocated" cache, where the entry is populated when it is used. Suggests patterns where the methods are fn get(&self) -> &Value (rather than, e.g., fn get(&mut self) -> &Value).

Discusses ECS but also the idea of storing your data in a vec (or other container) and passing around indices (or other keys) to act as pointers. Also covers generational arenas (like generational-arena) which can help manage alloc/free patterns in these sorts of structures.

Discusses the idea of storing your data in a vec (or other container) and passing around indices (or other keys) to act as pointers. Note that generational arenas (covered by West in previous item) can help solve the problem of "how to remove a node without dangling indices", although they only detect dangling indices at runtime, they don't prevent them statically.

Async

Talks about how to setup actors using the tokio runtime as an alternative to using locking.

About

A collection of blog posts and links that talk about how to successfully use Rust.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published