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 Studio Code IDE. This post shows how to install and
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 E0384 Cannot Assign Twice To Immutable Variable
By default, variables are immutable in Rust. This design helps up write concurrent codes and avoid common problems that come along with concurrency.
How To Windows Batch Files Using Rust
In Rust, we can use std::process::Command to run a .bat or .cmd file in Windows.
Path Parameter and JSON Payload in Actix-Web
This post demonstrates how to capture path parameters and JSON payload in Actix-web .
Static and Instance Methods in Struct in Rust
A struct can have its own static and instance methods (or functions) but are not created within the struct itself. These methods exist in a separate block using impl and they can be either static or instance methods.
Insertion Sort Recursion and Iteration in Rust
This post is about a sorting algorithm called Insertion Sort with recursive and iterative implementations in Rust.
Write XML Tags using Closure in Rust – No Element End Tags
Did you miss writing out an XML element end tag in your Rust codes? There is a convenient way to avoid this in Rust using Closure.
Quicksort Algorithm Example in Rust
This post is about an example of the Quicksort algorithm in Rust. It sorts an array of i32 with 13 elements.
Rust – Mutable and Shared Borrowing
There are two types of borrowing in Rust – mutable and shared borrowing.