Rust Borrow Checker 2.0 is Finally Here

rust dev.to

Perfectly safe Rust code that wouldn't compile until today is now finally compiling! The wait is over. Polonius: The Next Evolution of Rust's Borrow Checker Rust's borrow checker keeps our code safe from memory bugs. We all love it, but sometimes the current version, Non-Lexical Lifetimes (NLL), is just a bit too strict. It can throw errors on code that is completely fine, especially when you use conditional branches or work with common data structures. That is where Polonius come

Read Full Tutorial open_in_new
arrow_back Back to Tutorials