1 个不稳定版本
0.1.0 | 2022年2月24日 |
---|
#16 in #key-string
7KB
57 行
Log-Tree
快速!100%可定制,非常易于使用。此库用于在命令行中打印树结构。
示例
// examples\basic.rs
use log_tree::LogTree;
struct Tree {
key: String,
childs: Vec<Tree>,
}
macro_rules! t {
($key:tt, $($childs:expr),*) => {
Tree { key: stringify!($key).to_string(), childs: vec![$($childs),*] }
};
}
impl LogTree for Tree {
fn add_node(&self, _: u8) -> Option<(String, log_tree::Childs<Self>)> {
Some((self.key.clone(), Box::new(&self.childs)))
}
}
fn main() {
let tree = t!(
A1,
t!(B1, t!(C1,), t!(C2,)),
t!(B2, t!(C1, t!(D1,), t!(D2,)))
);
println!("{}", tree.fmt_tree());
}
输出:cargo run --example basic
A1
├─╼ B1
│ ├─> C1
│ ╰─> C2
└─╼ B2
╰─> C1
├─> D1
╰─> D2