1 unstable release
| 0.1.0 | Apr 9, 2025 |
|---|
#5 in #unsafe-cell
94 downloads per month
Used in 11 crates
(3 directly)
515KB
322 lines
A hybrid between an UnsafeCell and a RefCell: comes with a RefCell-like but unsafe API that panics in test builds (#[cfg(test)]) when mutable access is not exclusive, but has no overhead (and allows for UB) in non-test builds.
Fairly Unsafe Cell
A hybrid between an UnsafeCell and a RefCell: comes with an unsafe but RefCell-like API that panics in test builds (#[cfg(test)]) when mutable access is not exclusive, but has no overhead (and allows for UB) in non-test builds.