Crate cell_rc [] [src]

This crate provides wrappers around Rc<T>, Weak<T>, Option<Rc<T>> and Option<Weak<T>> with similar functionality to Cell and less overhead than RefCell.

Structs

CellOptRc

Wrapper around Option<Rc<T>>

CellOptWeak

Wrapper around Option<Weak<T>>

CellRc

Wrapper around Rc<T>

CellWeak

Wrapper around Weak<T>