A pointer in programming is often a piece of data that directs to the location of another piece of data…
Rust
-
-
Dereferencing is how we access the value that a reference points to. References are like signposts that guide us to…
-
Raw strings are handy when you’re working with content that has characters that would normally require escaping in a regular…
-
In this guide, we’ll explore the reasons for having two types of strings in Rust &str and String , how…
-
This guide is an attempt to simplify Rust Lifetimes, it’s a series and will be divided into several chapters. We’ll…
-
Imagine a town, where Mrs. Ifeoluwa owns a beautiful home that she’s decided to sell. In this town, there is…
-
Rust is the most loved language right now — sounds like a cliche already 😃, but it’s true. In fact,…
-
Rust is a statically typed programming language that allows developers to build high-quality and efficient software. Rust takes memory management…
-
In today’s Rust Journey piece, we’ll discuss one concept that might confuse new Rust Developers — the where clause in…