(path: P, output_dir: O)
| 17 | let path = readable_disk_path(path.as_res_path_str())?; |
| 18 | perro_io::list_zip_file_with_limits(path, limits) |
| 19 | } |
| 20 | |
| 21 | pub fn read_entry<P: ResPathSource>(path: P, name: &str) -> io::Result<Vec<u8>> { |
| 22 | let path = readable_disk_path(path.as_res_path_str())?; |
| 23 | perro_io::read_zip_file_entry(path, name) |
| 24 | } |
| 25 | |
| 26 | pub fn read_entry_with_limits<P: ResPathSource>( |
nothing calls this directly
no test coverage detected