This post shows how to find duplicate files in Rust with the same digests. The codes display list of duplicate files under the same digest. Personal Use Case I have
Rust – Display Contents of Array, Tuple, HashMap and Vector
This post is about displaying the contents of Arrays , Tuples , HashMaps and Vectors in Rust.
Ways To Compare Strings in Rust – Functions And Operators
In Rust, we can use the eq(), eq_ignore_ascii_case() , and == .
Rust Array Size Limit To 32 No More In 1.47.0 Release
Before 1.47.0, there is the Rust array size limit size of 32. This is evident when we get the E0277 error that has the following message.
1 |
arrays only have std trait implementations for lengths 0..=32 |
When Do We
Rust – How to create Two Dimensional Array Example
Rust has a different construct for creating arrays.
Rust Generics With Structs, Functions, Methods, and Enums
Rust Generics is a language feature for code reuse in multiple contexts using different actual types for Structs, Functions, Methods, and Enums. Moreover, they allow for concise and clean codes
What Are References In Rust And How To Use Them?
Understanding what references are in Rust and how to use them is crucial. A reference is a pointer to a memory location. A location where the data we’re interested in
Panic and Result – Handle Errors in Rust
Errors are a part of Software, and Rust has features to terminate an application using the panic macro and handle failures gracefully with the Result enum. These Rust’s features are
Rust Stable And Rocket 0.5 Latest Development Codes
As posted in Rust Framework Rocket Goes Stable, Rocket will be compatible with Rust Stable, starting with version 0.5. It is almost September, and any time soon, we will have
Rust IDE Plugin For Visual Studio Code – Install And Use
Have you been looking for a Rust IDE? Unfortunately, there are no IDEs specifically written for Rust. There are, however, Rust IDE plugins (or extensions) for IntelliJ IDEA and Visual