Rust

A focused archive for Rust learning notes, practice posts, and debugging guides.

Topics All AI Rust

Rust 04. Ownership, Borrowing, and Lifetimes

7 minute read

When learning Rust, the terms you hear over and over are ownership, borrowing, and lifetime. These ideas are the core reason Rust can provide memory safety w...

Rust 01. Install Rust and Run Hello World

2 minute read

When you first start with Rust, it is usually much easier to install everything through the official installer, rustup, instead of installing the compiler by...