Structsยง
- Cell ๐
- A mutable memory location.
- Const
Ptr ๐ - This newtype around *mut T exists for interoperability with loom::cell::ConstPtr, which works as a guard and performs additional logic to track access scope.
- Unsafe
Cell ๐ - This UnsafeCell wrapper exists for interoperability with loom::cell::UnsafeCell, and only contains the interface that is needed for this crate.