Category: Rust

Iterating Through Enum Values in Rust

1. Overview Iterating through an Enum value may be tricky in Rust. However, a third-party crate called strum makes the process easier. In this tutorial, we’ll explore how to use strum to iterate over an...

Building Multiple Binaries in Rust

1. Overview In Rust, a binary is an executable file that serves as an entry point to a program. By default, a typical Rust project consists of a single binary. However, with some configurations,...