Expand description
UncheckedCell datatype; a convenience wrapper around UnsafeCell<MaybeUninit<T>>
Authors: MarioS271
Structsยง
- Unchecked
Cell - A datatype with interior mutability, which can be uninitialized via [
MaybeUninit] When the cargo featuredebug-checksis enabled, this type also checks for double initialization and uninitialized access.