Explore >> Select a destination


You are here

morestina.net
| | ricardomartins.cc
3.1 parsecs away

Travel
| | UnsafeCell is the keystone for building interior mutability types in Rust, such as Cell, RefCell, RwLock and Mutex. In this article we'll explore how it works and how it is used by those types.
| | blog.kylehuey.com
3.8 parsecs away

Travel
| | Today I published lazy-init, a Rust crate that scratches an itch I've had for a while. lazy-init is designed for when: you want to do some work (a computation, disk I/O, etc) lazily, the product of...
| | limpet.net
3.0 parsecs away

Travel
| | [AI summary] This article explains Rust's memory safety guarantees by reframing the compiler's borrowing and lifetime checks as a system of unique versus shared access to data.
| | blog.skylight.io
17.7 parsecs away

Travel
| One of the coolest features of Rust is how it automatically manages resources for you, while still guaranteeing both safety (no segfaults) and high performance. Because Rust is a different kind of programming language, it might be difficult to understand what I mean, so let me be perfectly clear: * In