| 29 | use toml::value::Table; |
| 30 | |
| 31 | pub(crate) struct GraphSlice { |
| 32 | pub cons: Box<dyn Fn(String, &Table) -> Result<Graph> + Send + Sync>, |
| 33 | pub info: NodeInfo, |
| 34 | } |
| 35 | crate::collect!(String, GraphSlice); |
| 36 | |
| 37 | /// Represents a graph with nodes and connections, which implement `Node` and `Actor`. |
nothing calls this directly
no outgoing calls
no test coverage detected