Structsยง
- An error returned by
RefCell::try_borrow
. - An error returned by
RefCell::try_borrow_mut
. - A mutable memory location.
- A value which is initialized on the first access.
- A cell which can nominally be written to only once.
- Wraps a borrowed reference to a value in a
RefCell
box. 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.
- Sync
Unsafe Cell Experimental UnsafeCell
, butSync
.