decompress_with_progress

Function decompress_with_progress 

Source
pub fn decompress_with_progress<R, W, F>(
    reader: &mut R,
    writer: &mut W,
    progress: F,
) -> Result<(), Error>
where R: Read + Seek, W: Write, F: FnMut(Progress),
Expand description

Decompress a WUX file from reader, writing the resulting WUD to writer and calling progress after each sector is written.