(&mut self, pin: &InPin, snarl: &mut Snarl<GuiAudioNode>)
| 191 | |
| 192 | impl<'a> SnarlViewer<GuiAudioNode> for DemoViewer<'a> { |
| 193 | fn drop_inputs(&mut self, pin: &InPin, snarl: &mut Snarl<GuiAudioNode>) { |
| 194 | for from in pin.remotes.iter() { |
| 195 | self.remove_edge(*from, pin.id, snarl); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | fn drop_outputs(&mut self, pin: &OutPin, snarl: &mut Snarl<GuiAudioNode>) { |
| 200 | for to in pin.remotes.iter() { |
nothing calls this directly
no test coverage detected