Today we are going to be talking about smart pointers and interior mutability, specifically, the Cell type. Cell is a type that you come across frequently in Rust programs that it can help to have a deeper understanding of what it is and how it works. One of the best ways to understand Cell and the fundamental concepts behind its implementation is to actually write it yourself. So that is what we are going to do!
ReadMake your code more idiomatic with clippy, safer with miri, and more consistent with rustfmt. AKA how to get Rust to yell at you even more
ReadSecure error responses for Rust and Actix-Web with no external crates.
ReadA simple way to decode configuration files based on the current application environment into globally accessible variables
Read