摘要: use std::collections::HashMap; use std::ops::Index; #[derive(Debug,Clone)] struct Cell{ name:String } type Col = HashMap<String, Vec<Cell>>; #[derive( 阅读全文
posted @ 2022-07-20 15:20 CrossPython 阅读(49) 评论(0) 推荐(0) 编辑