sync-cell 0.2.0

A collection of easier to use thread-safe types for the creation of larger thread safe systems.
Documentation
  • Coverage
  • 100%
    18 out of 18 items documented2 out of 17 items with examples
  • Size
  • Source code size: 19.67 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.38 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • WhyAreAllTheseTaken/sync-cell
    0 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • WhyAreAllTheseTaken

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 for std::cell::RefCell and std::cell::Cell with an easier to use API than std::sync::RwLock.
  • HeldSyncCell<T> - A cell that maintains a previous value until the update method is called at which point any changes to the value are applied.