(&mut self)
| 14 | } |
| 15 | impl Drop for CommunicationChannel { |
| 16 | fn drop(&mut self) { |
| 17 | println!("Closing port {}:{}", self.address, self.port); |
| 18 | } |
| 19 | } |
| 20 | impl CommunicationChannel { |
| 21 | fn create(address: &str, port: u16) -> CommunicationChannel { |
nothing calls this directly
no outgoing calls
no test coverage detected