DEV Community

Discussion on: That's so Rusty! Fearless concurrency

Collapse
 
richardpringle profile image
Richard Pringle

Thanks! Well written article. Just remember that Rust doesn't actually prevent race conditions, but only data-races (which is one of many types of race conditions). Data-races are particularly bad because they could lead to undefined behaviour whereas many other types of race conditions could simply lead to unexpected results.