Expand description
Rust implementation of the WUX compression format for Wii U disc images.
Currently, only decompression is supported.
Structs§
- Progress
- The current progress of an operation.
Enums§
- Error
- An error when processing a WUX file.
Functions§
- decompress
- Decompress a WUX file from
reader, writing the resulting WUD towriter. - decompress_
file - Decompress a WUX file on disk, writing the resulting WUD to another file on disk. This enables certain performance improvements (currently only implemented for Linux).
- decompress_
file_ with_ progress - Decompress a WUX file on disk, writing the resulting WUD to another file on disk and calling
progressafter each sector is written. This enables certain performance improvements (currently only implemented for Linux). - decompress_
with_ progress - Decompress a WUX file from
reader, writing the resulting WUD towriterand callingprogressafter each sector is written.