gantz_core 0.1.0

The core types and traits for gantz, an environment for creative systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use edge::Edge;
pub use node::Node;
pub use steel;

pub mod compile;
pub mod edge;
pub mod graph;
pub mod node;
pub mod visit;

/// The ident used to represent the root state.
/// This is the state of the top-level graph.
pub const ROOT_STATE: &str = "%root-state";
/// The ident used to represent the state of a graph.
/// Note that this can be either nested or top-level.
const GRAPH_STATE: &str = "graph-state";