Nyakio Mainanyakio.hashnode.dev·Jun 9, 2023Understanding and Using Option Enum in RustHello, Rustaceans! Today we're diving into one of Rust's core features that sets it apart from many other languages: the Option enum. In languages like JavaScript or Python, a function might return a value, or it might return null or None to indicate...32 readsRust
Arjun Narainarjunnarain.dev·Apr 25, 2023Welcome to RustIntroduction Hello, future Rustaceans! Are you ready to embark on an exciting journey into the world of Rust? Rust is a programming language known for its safety, performance, and concurrency, and it's been gaining popularity among developers all ar...1 like·160 readsRusty RuminationsRust
Nyakio Mainanyakio.hashnode.dev·Mar 22, 2023Understanding Referencing and Borrowing in Rust.Introduction Rust is a systems programming language that offers a high level of safety, speed, and concurrency. One of the key features of Rust is its robust ownership system, which helps prevent memory leaks and data races. Referencing and borrowing...7 likes·53 readsrust lang