Category Rust

Rust Polonius Borrow Checker

What is the Borrow Checker? Rust’s borrow checker is the compile-time system that enforces ownership and borrowing rules. It guarantees memory safety (no dangling pointers, no data races, no use-after-free) without a garbage collector. What is Polonius? Polonius is a…

My Journey Learning Async Rust

I started with a simple question: “Async Rust?” Over the past session, I went from zero to building a complete asynchronous Rust application. I began by understanding the basics — how async/await works, why we need a runtime like Tokio,…