gbf_core::cfg_dot

Trait DotRenderableGraph

Source
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§

Source

fn render_dot(&self, config: CfgDotConfig) -> String

Renders the graph in DOT format.

Implementors§