10次发布

0.2.0 2023年9月4日
0.1.9 2023年1月22日
0.1.8 2022年12月29日
0.1.6 2022年9月7日
0.1.2 2022年7月12日

#342 in 并发

Download history • Rust 包仓库 70/week @ 2024-03-11 • Rust 包仓库 169/week @ 2024-03-18 • Rust 包仓库 185/week @ 2024-03-25 • Rust 包仓库 252/week @ 2024-04-01 • Rust 包仓库 106/week @ 2024-04-08 • Rust 包仓库 102/week @ 2024-04-15 • Rust 包仓库 150/week @ 2024-04-22 • Rust 包仓库 63/week @ 2024-04-29 • Rust 包仓库 15/week @ 2024-05-06 • Rust 包仓库 137/week @ 2024-05-13 • Rust 包仓库 61/week @ 2024-05-20 • Rust 包仓库 59/week @ 2024-05-27 • Rust 包仓库 112/week @ 2024-06-03 • Rust 包仓库 22/week @ 2024-06-10 • Rust 包仓库 119/week @ 2024-06-17 • Rust 包仓库 34/week @ 2024-06-24 • Rust 包仓库

302每月下载量
用于 4 个Crates(2 直接)

MIT/Apache

66KB
922

Atomicell crate

crates docs actions MIT/Apache loc

此crate提供了AtomicCell类型——标准库中RefCell的多线程版本。AtomicCell使用原子操作来跟踪借用,并能够在多个线程并发尝试借用时保证没有可变别名。

与互斥锁和自旋锁不同,AtomicCell没有阻塞调用。借用要么立即成功,要么失败。

存在返回可选类型的可失败调用——AtomicCell::try_borrowAtomicCell::try_borrow_mut

以及恐慌版本——AtomicCell::borrowAtomicCell::borrow_mut

无运行时依赖