A cell whose value can only be accessed by a owning thread
Safe, Send + Sync access to !Send/!Sync data by isolating it on a dedicated thread and interacting with it through message passing. Perfect for Rc, RefCell, and other single-threaded types.
Memory pool
Create a cell that can only be accessed by a single thread.