Expand description
Structs§
- Cell
core
A mutable memory location.- Lazy
Cell core
A value which is initialized on the first access.- Once
Cell core
A cell which can nominally be written to only once.- Ref
core
A wrapper type for an inmutably borrowed value from aRefCell<T>
- RefCell
core
A mutable memory location with dynamically checked borrow rules.- RefCell
Borrow Error - 🚩
core
An error returned byRefCell::try_borrow
. - RefCell
Borrow MutError - 🚩
core
An error returned byRefCell::try_borrow_mut
. - RefMut
core
A wrapper type for a mutably borrowed value from aRefCell<T>
- Unsafe
Cell core
The core primitive for interior mutability in Rust.
Traits§
- ExtCell
Option - 🌐
Extension trait providing additional methods for
Cell<Option>
.