4个版本

0.1.3 2021年9月1日
0.1.2 2021年8月30日
0.1.1 2021年8月27日
0.1.0 2021年8月27日

#638 in 内存管理

Download history • Rust 包仓库 32/week @ 2024-03-07 • Rust 包仓库 22/week @ 2024-03-14 • Rust 包仓库 2/week @ 2024-03-21 • Rust 包仓库 10/week @ 2024-03-28 • Rust 包仓库 15/week @ 2024-04-04 • Rust 包仓库 6/week @ 2024-04-11 • Rust 包仓库 5/week @ 2024-04-18 • Rust 包仓库 22/week @ 2024-04-25 • Rust 包仓库 5/week @ 2024-05-02 • Rust 包仓库 2/week @ 2024-05-09 • Rust 包仓库 8/week @ 2024-05-16 • Rust 包仓库 26/week @ 2024-05-23 • Rust 包仓库 30/week @ 2024-05-30 • Rust 包仓库 15/week @ 2024-06-06 • Rust 包仓库 7/week @ 2024-06-13 • Rust 包仓库 2/week @ 2024-06-20 • Rust 包仓库

每月下载量56次
2个Crates中使用(通过l1x-wasm-llvmir

MIT许可证

17KB
222 行代码

RcCell

A convenient wrapper for Rc<RefCell<T>>> and Weak<RefCell<T>>>.

The RcCell library adds two new structs

  • RcCell<T>: a wrapper for Rc<RefCell<T>>.
  • WeakCell<T>: a wrapper for Weak<RefCell<T>>.

This library extends the rc-cell library.

示例

use rccell::{RcCell, WeakCell};

let a = RcCell::new(1);     // a is a RcCell that wraps an Rc<RefCell<i32>>
let b = a.clone();          // You can create multiple RcCells pointing to the same data.

let mut c = a.borrow_mut();  // You can use borrow and borrow_mut methods as if  RcCells were RefCells
*c = 2;
// let mut d = b.borrow_mut()   You cannot create two RefMuts for the same RcCell.
drop(c);

assert!(a.try_borrow().is_ok());  // You can use try_borrow and try_borrow_mut to avoid panicking
// let d = a.unwrap()  You can use unwrap to get the inner value (if there is only one RcCell)
assert!(a.try_unwrap().is_err());  // You can use try_unwrap to avoid panicking

let d: WeakCell<i32> = b.downgrade();  // Use downgrade to create a WeakCell pointing to the same data
assert!(d.upgrade().is_some());  // Use the upgrade method to get a RcCell pointing to the same data as the WeakCell.

无运行时依赖