Strings, at first glance in Rust, may seem very complicated. First of all, there's the existence of...
I have discovered that Rust has great support for writing Command-Line Interface (CLI) tools, or...
I often install tools via cargo and use crates for my code that have many dependencies. If you're...
This week, I wanted to clarify in my head what the naming conventions are in the standard library if...
Last week I wrote about basic use of Option, Result and creating and using errors derived from...
Options and Results The Option and Result types in Rust will be two of the most used types...
One of the abilities that Rust promises is memory safety, and I'm here to say that it delivers. So...
Overview This blog is my attempt at documenting what I've learnt on my journey using Rust....