Skip to main content

zen_types/
rccell.rs

1use std::cell::RefCell;
2use std::rc::Rc;
3
4pub type RcCell<T> = Rc<RefCell<T>>;