Consume the HashReader and return its internal reader
(self)
| 52 | |
| 53 | /// Consume the HashReader and return its internal reader |
| 54 | pub fn into_inner_reader(self) -> R { |
| 55 | self.reader |
| 56 | } |
| 57 | |
| 58 | /// Consume the HashReader and return its hasher and internal reader |
| 59 | pub fn into_parts(self) -> (D, R) { |
nothing calls this directly
no outgoing calls
no test coverage detected