dot_ix_model 0.10.0

Model for the `dot_ix` diagramming application.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Edge between two functions.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Edge {
    /// Logical / functional dependency.
    ///
    /// The predecessor node points to the successor node.
    Logic,
    /// The predecessor node contains the successor node.
    Contains,
    /// This edge is purely for adjusting how `dot` lays out the graph.
    Layout,
}