use std::cell::RefCell; use std::collections::HashMap; struct Frame { map: RefCell<HashMap<String, String>>, } impl Frame { fn new() -> Frame { Frame { map: ...
確定! 回上一頁