Crate munzip

Source

Structs§

Entry
An entry in the archive. An entry may be a file or a directory. No contents are read until Entry::buffer() is invoked.
IterableArchive
An interable for the archive. The iterator will hold the file handle open and scan for file headers. There are currently small allocations to read these headers, but the buffer isn’t read until requested on the yielded Entry.
MuError
The munzip Error type. Currently not an enum, just a String wrapper.
SearchableArchive
A queryable interface for the archive. This is for workloads where you may want to hold the file handle open, and load in specific files, by their name, on demand.