We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efa3dae commit f0bcb73Copy full SHA for f0bcb73
src/parallel-rustc.md
@@ -46,7 +46,6 @@ are implemented differently depending on whether `parallel-compiler` is true.
46
47
| data structure | parallel | non-parallel |
48
| -------------------------------- | --------------------------------------------------- | ------------ |
49
-| Atomic{Bool}/{Usize}/{U32}/{U64} | std::sync::atomic::Atomic{Bool}/{Usize}/{U32}/{U64} | (std::cell::Cell<bool/usize/u32/u64>) |
50
| OnceCell | std::sync::OnceLock | std::cell::OnceCell |
51
| Lock\<T> | (parking_lot::Mutex\<T>) | (std::cell::RefCell) |
52
| RwLock\<T> | (parking_lot::RwLock\<T>) | (std::cell::RefCell) |
0 commit comments