Gets a mutable reference to the underlying reader Direct reads from the underlying reader are not hashed
(&mut self)
| 42 | /// Gets a mutable reference to the underlying reader |
| 43 | /// Direct reads from the underlying reader are not hashed |
| 44 | pub fn get_reader_mut(&mut self) -> &mut R { |
| 45 | &mut self.reader |
| 46 | } |
| 47 | |
| 48 | /// Consume the HashReader and return its hasher |
| 49 | pub fn into_hasher(self) -> D { |
nothing calls this directly
no outgoing calls
no test coverage detected