|
You are here |
educatedguesswork.org | ||
| | | | |
borretti.me
|
|
| | | | | A survey of type systems for memory safety. | |
| | | | |
www.integralist.co.uk
|
|
| | | | | I've been learning Rust recently. This will probably be my third (lazy) attempt to learn the language. The reason I've failed previously is simply because I had no reason to learn it. Other than the memory safety aspects, which I like a lot, I don't actually like the design of the language at all (but that's a conversation for another day). This time around I want to learn the language as it's pertinent to my job. | |
| | | | |
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 | |
| | | | |
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. | ||