Crate rc_cell

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