Guard that cleans up the port file on drop
| 66 | |
| 67 | /// Guard that cleans up the port file on drop |
| 68 | struct PortFileGuard { |
| 69 | path: std::path::PathBuf, |
| 70 | } |
| 71 | |
| 72 | impl Drop for PortFileGuard { |
| 73 | fn drop(&mut self) { |
nothing calls this directly
no outgoing calls
no test coverage detected