#tree #tree-structure #command-line #printing #log #string #key-string

log-tree

This library used for printing tree structure in command line

1 unstable release

0.1.0 Feb 24, 2022

#17 in #key-string

Apache-2.0

7KB
57 lines

Log-Tree

Fast! 100% customizeable and very easy to use. This library used for printing tree structure in command line.

Example

// 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());
}

Output: cargo run --example basic

A1
├─╼ B1
│  ├─> C1
│  ╰─> C2
└─╼ B2
   ╰─> C1
      ├─> D1
      ╰─> D2

No runtime deps