(&mut self)
| 52 | |
| 53 | impl<M: Materials, R> Drop for Testnet<M, R> { |
| 54 | fn drop(&mut self) { |
| 55 | // Make sure anything that can use a common network is dropped first. |
| 56 | drop(std::mem::take(&mut self.relayers)); |
| 57 | drop(std::mem::take(&mut self.nodes)); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | impl<M, R> Testnet<M, R> |
nothing calls this directly
no outgoing calls
no test coverage detected