Module no_std_compat2::cell
source · Available on non-crate feature
std only.Structs
- LazyCellExperimentalA value which is initialized on the first access.
- SyncUnsafeCellExperimental
UnsafeCell, butSync. - An error returned by
RefCell::try_borrow. - An error returned by
RefCell::try_borrow_mut. - A mutable memory location.
- A cell which can be written to only once.
- Wraps a borrowed reference to a value in a
RefCellbox. A wrapper type for an immutably borrowed value from aRefCell<T>. - A mutable memory location with dynamically checked borrow rules
- A wrapper type for a mutably borrowed value from a
RefCell<T>. - The core primitive for interior mutability in Rust.