(self, parent_id: NodeID)
| 28 | } |
| 29 | |
| 30 | pub fn parent_id(self, parent_id: NodeID) -> Self { |
| 31 | Self { |
| 32 | parent_id: Some(parent_id), |
| 33 | ..self |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | pub fn top_level(self, top_level: bool) -> Self { |
| 38 | Self { top_level, ..self } |
no outgoing calls
no test coverage detected