(&self)
| 117 | |
| 118 | impl Clone for ProgressBars { |
| 119 | fn clone(&self) -> Self { |
| 120 | // We need to clone the progress bars properly |
| 121 | let total_pb = self.total_pb.clone(); |
| 122 | let hits_pb = self.hits_pb.clone(); |
| 123 | let stats_pb = self.stats_pb.clone(); |
| 124 | |
| 125 | Self { |
| 126 | total_pb, |
| 127 | hits_pb, |
| 128 | stats_pb, |
| 129 | } |
| 130 | } |
| 131 | } |
no outgoing calls
no test coverage detected