Sync Cell
A crate containing easier to use thread-safe types for the creation of larger thread safe systems.
Included Types
SyncCell<T>- A replacement forstd::cell::RefCellandstd::cell::Cellwith an easier to use API thanstd::sync::RwLock.HeldSyncCell<T>- A cell that maintains a previous value until theupdatemethod is called at which point any changes to the value are applied.