#rust-lang
Read more stories on Hashnode
Articles with this tag
In Rust, the Rc (short for "reference counting") type is a smart pointer that allows you to share ownership of a value between multiple variables. It...
In Rust, the Box type is a smart pointer that allows you to store values on the heap (as opposed to the stack). It is defined in the std::boxed module...
Error handling is an important aspect of programming in any language, and Rust is no exception. In Rust, errors can be handled in a number of...