Hacker Newsnew | past | comments | ask | show | jobs | submit | nsuser2's commentslogin

> 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 impossible to perform a data race. Interior mutability makes this more complicated, which is largely why we have the Send and Sync traits (see https://doc.rust-lang.org/nomicon/races.html).


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: