Rust
Rust is a programming language that runs fast, prevents segfaults, and guarantees thread safety.[1]
Features
- zero-cost abstractions
- move semantics
- guaranteed memory safety
- threads without data races
- trait-based generics
- pattern matching
- type inference
- minimal runtime
- efficient C bindings
- no garbage collector
- runs on bare metal
- ownerships and borrows
Prerequisites
- Basic knowledge of computer science
- Basic knowledge on any programming language
- A computer with a Rust-enabled IDE (VisualRust, intellij-rust, etc.)
- Understanding of static types
Lessons
Resources
Official Content
- https://doc.rust-lang.org/book/ - Book format
- https://play.rust-lang.org - Online testing environment
- https://www.rust-lang.org/ - Homepage
Open-Source Repositories
Online Learning Sites
- https://learnxinyminutes.com/docs/rust/
- https://learning-rust.github.io/
- https://stevedonovan.github.io/rust-gentle-intro/
- https://www.ralfj.de/projects/rust-101/main.html
- https://siciarz.net/24-days-rust-conclusion-2016/
Online Code Environments
Online Communities
Specific Topics
- https://pascalhertleif.de/artikel/good-practices-for-writing-rust-libraries/ - Good rust habits
Exploring Rust
Tasks
See also
- cargo (Rust)