File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ are implemented diferently depending on whether `parallel-compiler` is true.
31
31
| -------------------------------- | --------------------------------------------------- | ------------ |
32
32
| Lrc | std::sync::Arc | std::rc::Rc |
33
33
| Weak | std::sync::Weak | std::rc::Weak |
34
- | Atomic{Bool}/{Usize}/{U32}/{U64} | std::sync::atomic::Atomic{Bool}/{Usize}/{U32}/{U64} | (std::cell::Cell<Bool/Usize/U32/U64 >) |
34
+ | Atomic{Bool}/{Usize}/{U32}/{U64} | std::sync::atomic::Atomic{Bool}/{Usize}/{U32}/{U64} | (std::cell::Cell<bool/usize/u32/u64 >) |
35
35
| OnceCell | std::sync::OnceLock | std::cell::OnceCell |
36
36
| Lock\< T> | (parking_lot::Mutex\< T>) | (std::cell::RefCell) |
37
37
| RwLock\< T> | (parking_lot::RwLock\< T>) | (std::cell::RefCell) |
38
38
| MTRef<'a, T> | &'a T | &'a mut T |
39
39
| MTLock\< T> | (Lock\< T>) | (T) |
40
40
| ReadGuard | parking_lot::RwLockReadGuard | std::cell::Ref |
41
41
| MappedReadGuard | parking_lot::MappedRwLockReadGuard | std::cell::Ref |
42
- | WriteGuard | parking_lot::MappedWriteGuard | std::cell::RefMut |
42
+ | WriteGuard | parking_lot::RwLockWriteGuard | std::cell::RefMut |
43
43
| MappedWriteGuard | parking_lot::MappedRwLockWriteGuard | std::cell::RefMut |
44
44
| LockGuard | parking_lot::MutexGuard | std::cell::RefMut |
45
45
| MappedLockGuard | parking_lot::MappedMutexGuard | std::cell::RefMut |
You can’t perform that action at this time.
0 commit comments