> And Rust doesn't help in this regard. From: https://doc.rust-lang.org/nomicon/races.html Data races are mostly prevented through rust's ownership system: it's impossible to alias a mutable reference, so it's…
> And Rust doesn't help in this regard. From: https://doc.rust-lang.org/nomicon/races.html Data races are mostly prevented through rust's ownership system: it's impossible to alias a mutable reference, so it's…