tree-graphviz 0.1.0

Generate GraphViz DOT directed trees, based on an arbitrary tree structure.
Documentation
1
2
3
4
5
6
7
8
9
10
A simple crate for generating GraphViz dot directed trees, 
    based on an arbitrary tree structure.
A tree can be any struct that implements:
    - `std::string::ToString`
    - `std::hash::Hash`
    - and `TreeVizNode`
Currently, this crate does not support recursive elements within a tree.

This crate aims to be dependency free, and fast.