| 306 | |
| 307 | #[derive(Debug, Clone, Copy)] |
| 308 | enum Compression { |
| 309 | None, |
| 310 | Gz, |
| 311 | } |
| 312 | |
| 313 | impl Compression { |
| 314 | fn open_reader(&self, path: &Path) -> std::io::Result<Box<dyn std::io::Read>> { |
nothing calls this directly
no outgoing calls
no test coverage detected