pub trait TreeVizNodewhere
Self: ToString,{
// Required method
fn children(&self) -> Vec<Self>
where Self: Sized;
}Expand description
A trait that represents a node in an arbitrary tree structure. To use this with draw_nodes, you also need to implement std::hash::Hash.