use std::{cell::RefCell, rc::Rc}; pub fn foo() { let list: Rc<RefCell<Vec<Rc<RefCell<String>>>>> = Rc::new(RefCell::new(Vec::new()));
確定! 回上一頁