Structsยง
- Borrow
Error - An error returned by
RefCell::try_borrow
. - Borrow
MutError - An error returned by
RefCell::try_borrow_mut
. - Cell
- A mutable memory location.
- Lazy
Cell - A value which is initialized on the first access.
- Once
Cell - 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 aRefCell<T>
. - RefCell
- A mutable memory location with dynamically checked borrow rules
- RefMut
- A wrapper type for a mutably borrowed value from a
RefCell<T>
. - Unsafe
Cell - The core primitive for interior mutability in Rust.
- Sync
Unsafe Cell Experimental UnsafeCell
, butSync
.