Expand description
Provides a thin wrapper over Rc<RefCell<T>>
for higher ergonomics, as managing nested types
gets annoying.
Structsยง
- The main attraction. Equivalent to
Rc<RefCell<T>>
but with one fewer type.Rc
methods are reimplemented, andRefCell
methods are gained by itsDeref
implementation. - Equivalent to
Weak<RefCell<T>>
but with one fewer type.