1//! Singlethreaded version of `ThinCell` 2 3mod state; 4use state::*; 5 6crate::thin_cell! { 7 /// A compact (`1-usize`), single-threaded smart pointer combining `Rc` 8 /// and `RefCell` with only `borrow_mut`. 9}