Single-threaded interior mutability
This module provides structures that allow data-modification through immutable references. None of the objects are safe to use from multiple threads.
| Kind | Name | Description |
|---|---|---|
| Struct | Cell | A container with interior mutability. |
| Struct | CopyCell | A container with interior mutability for Copy types. |
| Struct | RefCell | A container with interior mutability for non-Copy types. |
| Struct | RefCellBorrow | An immutable |
| Struct | RefCellBorrowMut | A mutable |
| Enum | RefCellStatus | The status of a |