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 .
Rust – Mutable and Shared Borrowing
There are two types of borrowing in Rust – mutable and shared borrowing.
Async Fn and Await Example in Rust That’ll Open Your Mind
This post provides an example the uses async, async fn, and await for asynchronous processing. The sample codes use the futures crate to block the main function until the asynchronous function completes execution.
Rust – Read EPCIS 1.2 XML Into Struct Instance
This post is about reading an EPCIS 1.2 XML in a Struct instance.
Secure Actix-Web Application With TLS
This post demonstrates how to secure a Actix-web web application in Rust.
Rust – Fibonacci using Recursion and Iteration
This post is about simple Fibonacci implementations in Rust using recursion and iteration. It also shows which one is faster than the other using differences of start and end times.