pub type RcVec<T> = Vec<Cell<usize>, T>;
Type alias for a reference-counted Vec using Cell<usize> as the counter.
Cell<usize>
pub struct RcVec<T> { /* private fields */ }