(&mut self, pin: Pin)
| 85 | } |
| 86 | |
| 87 | fn clear(&mut self, pin: Pin) -> io::Result<()> { |
| 88 | self.inputs.remove(&pin); |
| 89 | self.outputs.remove(&pin); |
| 90 | Ok(()) |
| 91 | } |
| 92 | |
| 93 | fn clear_all(&mut self) -> io::Result<()> { |
| 94 | self.inputs.clear(); |
no test coverage detected