Crate rc_cell

Source
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. Rc methods are reimplemented, and RefCell methods are gained by its Deref implementation.
RcCellWeak
Equivalent to Weak<RefCell<T>> but with one fewer type.