Replace the reader with another reader
(&mut self, reader: R)
| 21 | |
| 22 | /// Replace the reader with another reader |
| 23 | pub fn replace_reader(&mut self, reader: R) { |
| 24 | self.reader = reader; |
| 25 | } |
| 26 | |
| 27 | /// Gets a reference to the underlying hasher |
| 28 | pub fn get_hasher(&self) -> &D { |
nothing calls this directly
no outgoing calls
no test coverage detected