Expand description
A replacement of std::cell::RefCell adding advanced support for mapping borrows.
Structsยง
- 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>
. - RefVal
- A type containing a value that contains a borrowed reference to a
value from a
RefCell<T>
. - RefVal
Mut - A type containing a value that contains a borrowed mutable reference
to a value from a
RefCell<T>
.