pub trait DotRenderableGraph: NodeResolver {
// Required method
fn render_dot(&self, config: CfgDotConfig) -> String;
}
Expand description
Trait to print the graph in DOT format. The must also implement NodeResolver
.
Required Methods§
Sourcefn render_dot(&self, config: CfgDotConfig) -> String
fn render_dot(&self, config: CfgDotConfig) -> String
Renders the graph in DOT format.