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