(&self)
| 78 | |
| 79 | impl<D: Digest + Clone, R: io::Read + Clone> Clone for HashReader<D, R> { |
| 80 | fn clone(&self) -> HashReader<D, R> { |
| 81 | HashReader { |
| 82 | reader: self.reader.clone(), |
| 83 | hasher: self.hasher.clone(), |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | impl<D: Digest, R: io::Read> io::Read for HashReader<D, R> { |
nothing calls this directly
no outgoing calls
no test coverage detected