Add a change that deleted this span.
(&mut self, change: NodeId)
| 128 | |
| 129 | /// Add a change that deleted this span. |
| 130 | pub fn add_deleted_by(&mut self, change: NodeId) { |
| 131 | if !self.deleted_by.contains(&change) { |
| 132 | self.deleted_by.push(change); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | /// Add a change that connected to this span. |
| 137 | pub fn add_connected_by(&mut self, change: NodeId) { |