use-zip 0.1.0

ZIP compression method labels for RustUse
Documentation
  • Coverage
  • 100%
    12 out of 12 items documented1 out of 5 items with examples
  • Size
  • Source code size: 5.65 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 352.35 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-archive
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-zip

ZIP compression method labels and numeric method codes.

This crate is part of the use-archive facade workspace. It provides ZIP-specific primitive labels only. It does not parse central directories, read ZIP archives, write ZIP archives, or extract files.

Example

use use_zip::ZipCompressionMethod;

assert_eq!(ZipCompressionMethod::from_code(8), ZipCompressionMethod::Deflated);
assert_eq!(ZipCompressionMethod::Zstd.code(), 93);