Crate wux

Source
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 to writer.
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 progress after 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 to writer and calling progress after each sector is written.