(path: P, name: &str)
| 12 | let path = readable_disk_path(path.as_res_path_str())?; |
| 13 | perro_io::list_zip_file(path) |
| 14 | } |
| 15 | |
| 16 | pub fn list_with_limits<P: ResPathSource>(path: P, limits: ZipLimits) -> io::Result<Vec<String>> { |
| 17 | let path = readable_disk_path(path.as_res_path_str())?; |
| 18 | perro_io::list_zip_file_with_limits(path, limits) |
| 19 | } |
| 20 |
nothing calls this directly
no test coverage detected