Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uazu/qcell
Statically-checked alternatives to RefCell and RwLock
https://github.com/uazu/qcell
cell rc rust
Last synced: 1 day ago
JSON representation
Statically-checked alternatives to RefCell and RwLock
- Host: GitHub
- URL: https://github.com/uazu/qcell
- Owner: uazu
- License: apache-2.0
- Created: 2019-02-28T15:42:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-21T00:16:36.000Z (7 months ago)
- Last Synced: 2025-01-09T22:08:08.391Z (8 days ago)
- Topics: cell, rc, rust
- Language: Rust
- Homepage:
- Size: 285 KB
- Stars: 367
- Watchers: 4
- Forks: 22
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Statically-checked alternatives to RefCell or RwLock
Cell types that instead of panicking at runtime as with `RefCell` will
give compilation errors instead, or that exchange fine-grained locking
with `RwLock` for coarser-grained locking of a separate owner object.### Documentation
See the [crate documentation](http://docs.rs/qcell).
# License
This project is licensed under either the Apache License version 2 or
the MIT license, at your option. (See
[LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT)).### Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in this crate by you, as defined in the
Apache-2.0 license, shall be dual licensed as above, without any
additional terms or conditions.