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 – 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 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
How to install Rust on Windows 10
There are two ways to install Rust on Windows 10. Through rust-init.exe and curl within the Windows Subsystem for Linux. This post uses that .exe file.
Rust Plugin for IntelliJ IDEA – Install And Use
By default, IntelliJ IDEA does not support Rust. However, there is a plugin that we can use to start programming in the IDE.
Rust – How to check for NULL values
Rust does not support NULL unlike other modern programming languages like Java. Actually, it does not have NULL or null keyword. However, it provides an enum Option used in similar way to Java 8 Optional.