| 56 | |
| 57 | #[derive(Clone, Debug)] |
| 58 | pub struct Graph { |
| 59 | pub name: String, |
| 60 | pub resources: HashMap<String, super::presentation::Entity>, |
| 61 | pub nodes: HashMap<String, Node>, |
| 62 | pub inputs: Vec<String>, |
| 63 | pub outputs: Vec<String>, |
| 64 | pub connections: HashMap<String, Connection>, |
| 65 | pub is_shared: bool, |
| 66 | pub global_res: Vec<String>, |
| 67 | } |
| 68 | |
| 69 | #[derive(Debug)] |
| 70 | pub struct Config { |
nothing calls this directly
no outgoing calls
no test coverage detected