arboreal 0.0.4

Library for building dynamic digraphs with generic data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
StateGraph( // name optional, but must be same name as struct
    name: Some("Example"),
    nodes: [
        (7, Some("This is node 7")),
        (11, None),
        (42, Some("This is node 42")),
    ],
    edges: [
        (7, 11, None),
        (7, 42, Some("Edge from 7 to 42")),
    ],
)