pub type CellMutex<T> = Mutex<CellMutex, T>;
Expand description
A single-threaded lock_api::Mutex using a RefCell internally.
A CellRwLock is typically more useful, and has no additional overhead.
Aliased Typeยง
pub struct CellMutex<T> { /* private fields */ }