* RCell, because ~~all~~ most its methods start with a "r" A Wrapper for reference counted cell that can be `Strong`, `Weak` or `Empty` allowing one to retain values selectively. To be used when one has to store a reference to some data but if this reference needs to keep it alive or not is to be determined at runtime. The feature **sync** which is enabled by default selects `std::sync::Arc` and `std::sync::Weak` as `rcell::Strong` and `rcell::Weak`. When the **sync** feature is disabled then the non sync `std::rc::Rc` and `std::rc::Weak` are selected as `rcell::Strong` and `rcell::Weak`.