pub fn decompress<R, F>( src_file: R, dest: &Path, expected: F, ) -> ZipResult<usize>where R: Read + Seek + UnwindSafe, F: Fn(&Path) -> bool + UnwindSafe,
Decompress a source file into the provided destination path.