RefCell<T> (Rust)

RefCell<T> provides interior mutability: it lets you mutate data through a shared reference by moving Rust's borrow checking from compile time to runtime.…