pub fn read_file_chunked<F>( path: &Path, chunk_size: usize, processor: F, ) -> Result<(), Box<dyn Error>>where F: FnMut(&str) -> bool,