dot_ix_rt 0.10.0

Runtime logic for the `dot_ix` diagramming application.
Documentation
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;
}