Rust

Rust

Rust Tutorials: basic and advanced tutorials on Rust programming language, web application, frameworks, backend, and REST API application

We are trying to make this Rust tutorial easier to follow, practice, and understand. So, the step-by-step tutorials are straight forward from how to create something to the Rust codes listing. In this Rust tutorial you will find:

  1. Some basic of Rust fundamentals
  2. Step by step on Building Rust REST-API
  3. Using popular RUST web frameworks
  4. Some short tips and tricks according to the Rust programming language

What is Rust Lang?

Rust is a general-purpose programming language emphasizing performance, type safety, and concurrency. It enforces memory safety, meaning that all references point to valid memory. It does so without a traditional garbage collector; instead, memory safety errors and data races are prevented by the "borrow checker", which tracks the object's lifetime of references at compile time.

Tutorials of Rust

REST API Security with Rust, MongoDB, and OAuth2 Secure your Rust REST API with OAuth2 and MongoDB. Learn to build your own OAuth2 server using Actix-web, JWT, and hashed user credentials
Rust and MongoDB Tutorial: Create CRUD REST-API Build a fast CRUD REST API with Rust and MongoDB. Learn setup, data modeling, and full CRUD operations in this step-by-step Rust backend tutorial