Rust enums are much more powerful than OOP enums. They solve some design problems much more elegantly than was possible in OOP languages. Read on to find out what Rust enums can do that OOP enums can't.| HashRust
This post discusses Rust references, specifically the syntactical and usage aspects. You have already read about safety aspects of references in the post Memory safety in Rust - part 2.| HashRust
Learn about arrays, vectors and slices in Rust in this post. Also find out how arrays in C or C++ are different than those in Rust.| HashRust
This post talks about Rust lifetimes. They are vital for the Rust compiler to carry out its duties. Read on to learn to think clearly about them.| HashRust
This is the second part of the memory safety in rust blog post. We will see how Rust is unique in its memory safety approach.| HashRust