Generate next id in graphviz.
(&mut self)
| 27 | impl GraphvizBuilder { |
| 28 | // Generate next id in graphviz. |
| 29 | pub fn next_id(&mut self) -> usize { |
| 30 | self.id_gen += 1; |
| 31 | self.id_gen |
| 32 | } |
| 33 | |
| 34 | // Write out the start of whole graph. |
| 35 | pub fn start_graph(&mut self, f: &mut fmt::Formatter) -> fmt::Result { |