Rust Concurrency
← Back to Language-Specific Concurrency
Rust’s ownership system prevents data races at compile time. The Send and Sync traits encode thread-safety in the type system. The tokio async runtime provides efficient async I/O. Fearless concurrency is a core promise of the language.