(&self)
| 157 | } |
| 158 | |
| 159 | /// Print the callgraph in dot format. |
| 160 | #[allow(dead_code)] |
| 161 | pub fn dot(&self) { |
| 162 | println!( |
| 163 | "{:?}", |
| 164 | Dot::with_config(&self.graph, &[Config::GraphContentOnly]) |
| 165 | ); |
| 166 | } |
| 167 | } |
nothing calls this directly
no outgoing calls
no test coverage detected