Rust's Sneaky Deadlock With `if let` Blocks
01 Nov, 2024
Rust is my favorite programming language. I've been writing Rust for about 6 years, from college to professionally, and I'm vocal about how helpful the compiler is in catching particularly nasty multithreaded issues and memory bugs. What the compiler doesn't always catch though is deadlocks, which can occur using several well known types like Mutex and RwLock.
Generally, this is fine, and you can sus out if a program is going to cause a deadlock by just making sure you aren't acquir...
Read more at brooksblog.bearblog.dev