8" :class="scrolled && 'is-scrolled'">
NOA
Labs
Tutorials
Courses
Skill Forge
Explore
Labs
Hands-on live sessions
Mentors
Meet the senior engineers
Projects
Real portfolio-ready builds
Talent Directory
Public student profiles
Mock Interview
Practice with real feedback
ATS Resume Checker
Free instant resume scoring
Search docs
Ctrl K
Login
Join Free
Artificial Intelligence
LangChain
LLMs
Machine Learning
Prompt Engineering
RAG (Retrieval-Augmented Generation)
AJAX
GraphQL
Apache Kafka
Microservices
Node.js
RabbitMQ
REST API
WebSockets
Algorithms
Data Structures
Angular
Bootstrap
CSS
HTML
jQuery
Next.js
Nuxt.js
React
Svelte
Tailwind CSS
Vue.js
ASP.NET Core
Django
.NET
Entity Framework Core
FastAPI
Flask
Gin
gRPC
Hibernate
Laravel
NestJS
Spring
Spring Boot
Spring Cloud
Spring Data JPA
Spring MVC
Spring Security
AWS
Azure
CI/CD
Docker
Git
Kubernetes
Linux
Nginx
Terraform
C
C++
C#
Dart
Go
Java
JavaScript
Kotlin
PHP
Python
Ruby
Rust
Swift
TypeScript
Database Design
MongoDB
MySQL
Oracle Database
PostgreSQL
Redis
SQL
System Design
↑↓ navigate
↵ open
esc close
Tutorials
/
Rust
Rust menu
Rust Tutorial
Memory-safe systems programming without a garbage collector.
Start the Rust tutorial →
What you'll learn
1. Rust Introduction
What Rust is, why it exists, and how to install it and run your first program with Cargo.
2. Syntax and Variables
Variables, immutability and mut, scalar and compound types, control flow, and functions in Rust.
3. Ownership and Borrowing
Rust's ownership rules, move semantics, borrowing, the borrow checker, and an intro to lifetimes.
4. Structs, Enums and Traits
Structs, enums, pattern matching, Option and Result error handling with ?, and traits.
5. Error Handling In Depth
The ? operator across function boundaries, converting errors with From/Into, and anyhow vs thiserror.
6. Concurrency with Threads and Channels
std::thread::spawn, Arc<Mutex<T>> for shared state, mpsc channels, and Send/Sync at compile time.
7. Testing in Rust
#[test], assert! macros, a complete test module, and unit tests vs integration tests.
8. Cargo and the Crates Ecosystem
Cargo.toml dependencies, semantic versioning, Cargo.lock, workspaces, and crates.io.
9. Rust Interview Questions
Real Rust interview questions and answers on ownership, borrowing, Option, Result, and traits.