I wrote my notes here about Rust programming language.
- Each value in Rust has a variable that's called its owner.
- There can only be one owner at a time.
- When the owner goes out of scope, the value will be dropped.
- At any given time, you can have either one mutable reference or any number of immutable references.
- References must always be valid.
The useful VSCode extensions to get started with powerfull IDE
rust-analyzer
codelldb (debug)
Even Better Toml
dependi
error lens
todo tree
github copilot