[][src]Function petgraph_evcxr::draw_dot

pub fn draw_dot<D>(dot: D) where
    D: Display

Draw the contents of a dot file.

let dot = "digraph {\
0 [label=\"a\"]\
1 [label=\"b\"]\
0 -> 1 [label=\"a → b\"]\
}";
draw_dot(dot);