[derive(Debug)]
| 44 | |
| 45 | //#[derive(Debug)] |
| 46 | pub struct Node { |
| 47 | pub variant: Rc<NodeCell>, |
| 48 | pub inputs: Vec<PortIdx>, |
| 49 | pub outputs: Vec<PortIdx>, |
| 50 | pub label: Option<String>, |
| 51 | pub containing_region: Option<RegionIdx>, |
| 52 | pub time: Timestamp, |
| 53 | pub done: bool, |
| 54 | } |
| 55 | |
| 56 | #[derive(Debug, PartialEq, Clone)] |
| 57 | pub enum Operation { |
nothing calls this directly
no outgoing calls
no test coverage detected