|
You are here |
morestina.net | ||
| | | | |
ricardomartins.cc
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | | | [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
|
|
| | | 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 | ||