Module cell

Source

Structsยง

BorrowError
An error returned by RefCell::try_borrow.
BorrowMutError
An error returned by RefCell::try_borrow_mut.
Cell
A mutable memory location.
LazyCell
A value which is initialized on the first access.
OnceCell
A cell which can nominally be written to only once.
Ref
Wraps a borrowed reference to a value in a RefCell box. A wrapper type for an immutably borrowed value from a RefCell<T>.
RefCell
A mutable memory location with dynamically checked borrow rules
RefMut
A wrapper type for a mutably borrowed value from a RefCell<T>.
UnsafeCell
The core primitive for interior mutability in Rust.
SyncUnsafeCellExperimental
UnsafeCell, but Sync.