4 releases

0.1.3 Sep 1, 2021
0.1.2 Aug 30, 2021
0.1.1 Aug 27, 2021
0.1.0 Aug 27, 2021

#441 in Memory management

Download history 14/week @ 2023-11-24 9/week @ 2023-12-01 22/week @ 2023-12-29 7/week @ 2024-01-05 12/week @ 2024-01-19 201/week @ 2024-01-26 21/week @ 2024-02-23 34/week @ 2024-03-01

55 downloads per month

MIT license

17KB
222 lines

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.

Example

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.

No runtime deps