1
2
3
4
5
//use std::rc;
use std::sync::Arc;

// pub type SharedRef<T> = rc::Rc<T>;
pub type SharedRef<T> = Arc<T>;