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.
Create Threads That Work With Data in Rust
Rust supports the creation of threads to run code simultaneously using the spawn function and a closure argument.
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.
Function Accepts Struct That Implements A Trait
This post briefly talks about how to create functions that accept struct instances that implement a specific trait.
Have You Started Using Actix-Web? It May Already Be Dead
Have you started using Actix-Web in your learning of Rust or real projects? Actix-web is now dead and no longer an open-source project. The author has moved it, along with Actix-Net, to his personal GitHub account. He is taking his
10 Alternatives To The Defunct Actix-Web
People have started looking for 10 alternatives to the now-defunct Actix-web since its death. Some may end up forking Actix-web and evolve it into something uniquely theirs. Others may have started porting their applications to other frameworks or even out of Rust.
Actix-Web: The Most Fun Rust Web Framework Is Back!
The most fun Rust web framework is back with a new project leader! I feel relieved by its comeback. Today, I was trying out one of the alternatives to Actix-web. But I was having difficulties making it read and parse
Why You Should Choose Rust Stable Over Nightly
If you are new to Rust, choose Rust Stable over Nightly to make your life and other people’s lives simple – may apply to both crate producers and consumers. There are three types of Rust compiler – Nightly, Beta, and