Expand description
ZIP entry decompressor.
Decompresses a single ZIP entry given the file data and an EntryLocation
from the Central Directory. Supports STORE (method 0) and DEFLATE (method 8).
Designed for parallel use: each worker gets the full data slice (read-only)
plus its own EntryLocation, decompresses independently, returns Vec<u8>.
Structs§
Functions§
- decompress_
entry - Decompress one ZIP entry.
- decompress_
entry_ raw - Decompress pre-read compressed bytes using the given ZIP compression method.