vizz 0.2.0

Tool for creating GraphViz/DOT visualizations of Rust data structures
Documentation
1
2
3
4
5
6
7
use vizz::Visualize;

pub fn main() {
    let my_int: u8 = 128;
    let my_int_dot = (&my_int).render_node();
    println!("{}", my_int_dot);
}