Specify the index of files in the stream which should throw an error when scanning
(mut self, idx: Vec<usize>)
| 272 | /// Specify the index of files in the stream which should |
| 273 | /// throw an error when scanning |
| 274 | pub fn with_scan_errors(mut self, idx: Vec<usize>) -> Self { |
| 275 | self.opener.error_scanning_idx = idx; |
| 276 | self |
| 277 | } |
| 278 | |
| 279 | /// Specify the behavior of the stream when an error occurs |
| 280 | pub fn with_on_error(mut self, on_error: OnError) -> Self { |
no outgoing calls
no test coverage detected