[][src]Crate rc_cell

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.