(self)
| 134 | } |
| 135 | |
| 136 | fn decompress(self) -> Decompress { |
| 137 | match self { |
| 138 | Self::Standard { header, wbits } => Decompress::new_with_window_bits(header, wbits), |
| 139 | Self::Gzip { wbits } => Decompress::new_gzip(wbits), |
| 140 | } |
| 141 | } |
| 142 | fn compress(self, level: Compression) -> Compress { |
| 143 | match self { |
| 144 | Self::Standard { header, wbits } => { |
no test coverage detected