(
&mut self,
input: &[u8],
output: &mut Vec<u8>,
(): Self::Flush,
)
| 38 | self.total_in() |
| 39 | } |
| 40 | fn decompress_vec( |
| 41 | &mut self, |
| 42 | input: &[u8], |
| 43 | output: &mut Vec<u8>, |
| 44 | (): Self::Flush, |
| 45 | ) -> Result<Self::Status, Self::Error> { |
| 46 | self.decompress_vec(input, output) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | impl DecompressStatus for Status { |
no outgoing calls
no test coverage detected