1 2 3 4 5 6 7 8
use dot_ix_model::common::{DotSrcAndStyles, GraphvizDotTheme}; mod info_graph; /// Generates GraphViz Dot source that can be rendered using `dot`. pub trait IntoGraphvizDotSrc { fn into(self, theme: &GraphvizDotTheme) -> DotSrcAndStyles; }