We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rustc_data_structures::sync
1 parent ed06554 commit 4801165Copy full SHA for 4801165
src/parallel-rustc.md
@@ -46,10 +46,8 @@ are implemented differently depending on whether `parallel-compiler` is true.
46
47
| data structure | parallel | non-parallel |
48
| -------------------------------- | --------------------------------------------------- | ------------ |
49
-| OnceCell | std::sync::OnceLock | std::cell::OnceCell |
50
| Lock\<T> | (parking_lot::Mutex\<T>) | (std::cell::RefCell) |
51
| RwLock\<T> | (parking_lot::RwLock\<T>) | (std::cell::RefCell) |
52
-| MTRef<'a, T> | &'a T | &'a mut T |
53
| MTLock\<T> | (Lock\<T>) | (T) |
54
| ReadGuard | parking_lot::RwLockReadGuard | std::cell::Ref |
55
| MappedReadGuard | parking_lot::MappedRwLockReadGuard | std::cell::Ref |
0 commit comments