use-iso 0.1.0

ISO image labels, extensions, and volume metadata primitives for RustUse
Documentation
  • Coverage
  • 100%
    19 out of 19 items documented1 out of 7 items with examples
  • Size
  • Source code size: 6.99 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 453.82 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-iso

ISO image labels, volume kinds, and extension helpers.

This crate is part of the use-archive facade workspace. It exposes ISO image primitive labels only. It does not read ISO images, mount filesystems, inspect sectors, or extract files.

Example

use use_iso::{IsoFormat, IsoVolumeKind, is_iso_filename};

assert!(is_iso_filename("installer.iso"));
assert_eq!(IsoFormat::Iso9660.as_str(), "iso9660");
assert_eq!(IsoVolumeKind::Bootable.as_str(), "bootable");